Print TODO items before appointments in query outputs and add an empty line between the list of TODO items and the list of appointments. This is how items were printed before the big parser refactoring. Also, add a test to ensure we do not unintentionally change that format in the future. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
29 lines
414 B
Bash
Executable File
29 lines
414 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_INIT:-./test-init.sh}"
|
|
|
|
if [ "$1" = 'actual' ]; then
|
|
"$CALCURSE" --read-only -D "$DATA_DIR"/ -c "$DATA_DIR/apts-filter-001" \
|
|
-t9 -s02/23/2013 -r2
|
|
elif [ "$1" = 'expected' ]; then
|
|
cat <<EOD
|
|
to do:
|
|
9. Gloriously slams
|
|
9. Beefburger's
|
|
9. Seasons
|
|
|
|
02/23/13:
|
|
* Event 2
|
|
- 10:00 -> 12:00
|
|
Appointment 2
|
|
|
|
02/24/13:
|
|
* Event 3
|
|
- 10:00 -> 12:00
|
|
Appointment 3
|
|
EOD
|
|
else
|
|
./run-test "$0"
|
|
fi
|
|
|