Fixed misnamed unit test file; upversioned to 0.0.2
This commit is contained in:
parent
15b04be9a9
commit
7e40d65df0
2 changed files with 1 additions and 1 deletions
19
unit-tests/empty-list.sh
Normal file
19
unit-tests/empty-list.sh
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# File: empty-list.sh.bash
|
||||
# Author: simon
|
||||
#
|
||||
# Created on 14-Aug-2017, 15:06:40
|
||||
#
|
||||
|
||||
expected=nil
|
||||
actual=`echo "'()" | target/psse 2> /dev/null | head -2 | tail -1`
|
||||
|
||||
if [ "${expected}" = "${actual}" ]
|
||||
then
|
||||
echo "OK"
|
||||
exit 0
|
||||
else
|
||||
echo "Fail: expected '${expected}', got '${actual}'"
|
||||
exit 1
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue