Files
todo.txt-cli/tests/t1260-listprj.sh
2011-11-10 14:21:47 -08:00

24 lines
387 B
Bash
Executable File

#!/bin/sh
test_description='list project functionality
'
. ./test-lib.sh
cat > todo.txt <<EOF
(B) smell the uppercase Roses +roses @outside
(C) notice the sunflowers +sunflowers @garden
stop
EOF
test_todo_session 'basic listproj' <<EOF
>>> todo.sh listproj
+roses
+sunflowers
EOF
test_todo_session 'listproj with context' <<EOF
>>> todo.sh listproj @garden
+sunflowers
EOF
test_done