aboutsummaryrefslogtreecommitdiffstats
path: root/test/todo-003.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/todo-003.sh')
-rwxr-xr-xtest/todo-003.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/todo-003.sh b/test/todo-003.sh
new file mode 100755
index 0000000..ecec032
--- /dev/null
+++ b/test/todo-003.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+if [ "$1" = 'actual' ]; then
+ calcurse -D data/ -t0 | sort -n
+elif [ "$1" = 'expected' ]; then
+ (
+ echo 'completed tasks:'
+ sed -n 's/^\[-\([0-9]\)\] \(.*\)/\1. \2/p' data/todo
+ ) | sort -n
+else
+ ./run-test "$0"
+fi