All unit tests passing! This is slightly a fix because there is a bug with

the character read after reading a number not being correctly pushed back
onto the input stream, but...
This commit is contained in:
Simon Brooke 2017-01-07 12:24:54 +00:00
parent 6eab3a531a
commit 2d9f4b0439
10 changed files with 85 additions and 34 deletions

View file

@ -1,9 +1,9 @@
#!/bin/bash
expected="\"Strings should be able to include spaces (and other stuff)!\""
expected='"Strings should be able to include spaces (and other stuff)!"'
actual=`echo ${expected} | target/psse 2> /dev/null`
if [ "${expected}" = "{$actual}" ]
if [ "${expected}" = "${actual}" ]
then
echo "OK"
exit 0