aboutsummaryrefslogtreecommitdiffstats
path: root/test/todo-003.sh
blob: ecec0327a2a92267089c0c3dc232e5d9d1b8ce30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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