diff options
Diffstat (limited to 'test/todo-001.sh')
-rwxr-xr-x | test/todo-001.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/todo-001.sh b/test/todo-001.sh new file mode 100755 index 0000000..db6b6ca --- /dev/null +++ b/test/todo-001.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ "$1" = 'actual' ]; then + "$CALCURSE" --read-only -D "$DATA_DIR"/ -t | sort +elif [ "$1" = 'expected' ]; then + ( + echo 'to do:' + sed '/^\[-/d; s/^\[\([0-9]\)\] \(.*\)/\1. \2/' "$DATA_DIR"/todo + ) | sort +else + ./run-test "$0" +fi |