Add tests for project and context completion.
This commit is contained in:
20
tests/t6010-completion-contexts.sh
Executable file
20
tests/t6010-completion-contexts.sh
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
|
||||
test_description='Bash context completion functionality
|
||||
|
||||
This test checks todo_completion of contexts
|
||||
'
|
||||
. ./test-lib.sh
|
||||
|
||||
cat > todo.txt <<EOF
|
||||
(B) smell the +roses @outside @outdoor +shared
|
||||
notice the sunflowers +sunflowers @outside @garden +shared +landscape
|
||||
stop
|
||||
EOF
|
||||
test_todo_completion 'all contexts' 'todo.sh list @' '@garden @outdoor @outside'
|
||||
test_todo_completion 'contexts beginning with o' 'todo.sh list @o' '@outdoor @outside'
|
||||
test_todo_completion 'contexts beginning with outs' 'todo.sh list @outs' '@outside'
|
||||
test_todo_completion 'contexts beginning with x' 'todo.sh list @x' ''
|
||||
|
||||
test_done
|
||||
20
tests/t6020-completion-projects.sh
Executable file
20
tests/t6020-completion-projects.sh
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
|
||||
test_description='Bash project completion functionality
|
||||
|
||||
This test checks todo_completion of projects
|
||||
'
|
||||
. ./test-lib.sh
|
||||
|
||||
cat > todo.txt <<EOF
|
||||
(B) smell the +roses @outside @outdoor +shared
|
||||
notice the sunflowers +sunflowers @outside @garden +shared +landscape
|
||||
stop
|
||||
EOF
|
||||
test_todo_completion 'all projects' 'todo.sh list +' '+landscape +roses +shared +sunflowers'
|
||||
test_todo_completion 'projects beginning with s' 'todo.sh list +s' '+shared +sunflowers'
|
||||
test_todo_completion 'projects beginning with ro' 'todo.sh list +ro' '+roses'
|
||||
test_todo_completion 'projects beginning with x' 'todo.sh list +x' ''
|
||||
|
||||
test_done
|
||||
Reference in New Issue
Block a user