mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Cmake:
- adapted makefile and unit tests to new place of test dir
This commit is contained in:
parent
17ef077e27
commit
5d775fdc3e
176 changed files with 1288 additions and 1287 deletions
|
@ -41,10 +41,10 @@ if (open my $fh, '>', 'due.rc')
|
|||
|
||||
# Add an overdue task, a due task, and a regular task. The "overdue" report
|
||||
# should list only the one task.
|
||||
qx{../task rc:due.rc add due:yesterday one};
|
||||
qx{../task rc:due.rc add due:tomorrow two};
|
||||
qx{../task rc:due.rc add due:eoy three};
|
||||
my $output = qx{../task rc:due.rc overdue};
|
||||
qx{../src/task rc:due.rc add due:yesterday one};
|
||||
qx{../src/task rc:due.rc add due:tomorrow two};
|
||||
qx{../src/task rc:due.rc add due:eoy three};
|
||||
my $output = qx{../src/task rc:due.rc overdue};
|
||||
like ($output, qr/one/, 'overdue: task 1 shows up');
|
||||
unlike ($output, qr/two/, 'overdue: task 2 does not show up');
|
||||
unlike ($output, qr/three/, 'overdue: task 3 does not show up');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue