mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
tests: Add test for TW-1883 (#1896)
This commit is contained in:
parent
5525460bdf
commit
c6fdb7e590
1 changed files with 17 additions and 0 deletions
17
test/tw-1883.t
Executable file
17
test/tw-1883.t
Executable file
|
@ -0,0 +1,17 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Test for TW-1883 (#1896 on Github)
|
||||||
|
# https://github.com/GothenburgBitFactory/taskwarrior/issues/1896
|
||||||
|
|
||||||
|
. bash_tap_tw.sh
|
||||||
|
|
||||||
|
task add sample
|
||||||
|
task +PENDING '(' ')'
|
||||||
|
task '(' ')'
|
||||||
|
task '(' '(' ')' ')'
|
||||||
|
task '(' '(' ')' '(' ')' ')'
|
||||||
|
|
||||||
|
# Detect that the task is actually displayed
|
||||||
|
task +PENDING '(' ')' | grep sample
|
||||||
|
task '(' ')' | grep sample
|
||||||
|
task '(' '(' ')' ')' | grep sample
|
||||||
|
task '(' '(' ')' '(' ')' ')' | grep sample
|
Loading…
Add table
Add a link
Reference in a new issue