13 lines
174 B
Bash
Executable file
13 lines
174 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PACKAGE=python-avocado
|
|
|
|
# Assume the test will pass.
|
|
result=PASS
|
|
|
|
avocado --help | grep -q -i '^usage:'
|
|
if [ $? -ne 0 ]; then
|
|
result=FAIL
|
|
fi
|
|
|
|
echo $result
|