Before adding any more features to todo_completion, I feel like I need test coverage, so this is a first stab at testing the completion results, via a new test function test_todo_completion. Some basic tests showcase the capabilities. Note: test-lib.sh now uses arrays, therefore all tests must use /bin/bash, not /bin/sh to avoid errors when sourcing test-lib. For consistency with todo.sh, we should have used Bash everywhere, anyway. Also note that t2000-multiline.sh needs some more quoting to avoid "Bash: ambiguous redirect" errors.
17 lines
464 B
Bash
Executable File
17 lines
464 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test_description='no old-style backtick command substitution
|
|
|
|
This test checks the todo.sh script itself for occurrences
|
|
of old-style backtick command substitution, which should be
|
|
replaced with $(...).
|
|
On failure, it will print each offending line number and line.
|
|
'
|
|
. ./test-lib.sh
|
|
|
|
test_todo_session 'no old-style backtick command substitution' <<EOF
|
|
>>> sed -n -e 's/\(^\|[ \t]\)#.*//' -e '/\`/{' -e '=;p' -e '}' "$(which todo.sh)"
|
|
EOF
|
|
|
|
test_done
|