The previous behavior of --todo was to always only list uncompleted items, unless zero was specified as additional argument. Restore and document this behavior. Also, fix two tests that failed because the --todo output is now sorted. Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
13 lines
254 B
Bash
Executable File
13 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_INIT:-./test-init.sh}"
|
|
|
|
if [ "$1" = 'actual' ]; then
|
|
"$CALCURSE" --read-only -D "$DATA_DIR"/ -t3
|
|
elif [ "$1" = 'expected' ]; then
|
|
echo 'to do:'
|
|
sed -n 's/^\[3\] \(.*\)/3. \1/p' "$DATA_DIR"/todo | sort
|
|
else
|
|
./run-test "$0"
|
|
fi
|