mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-19 09:53:08 +02:00
Bug #936
- Fixed failing tests on Solaris. Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
parent
3b9a737ac4
commit
ed6bdd7bdc
1 changed files with 5 additions and 5 deletions
10
test/count.t
10
test/count.t
|
@ -48,19 +48,19 @@ qx{../src/task rc:count.rc add four wait:eom};
|
|||
qx{../src/task rc:count.rc add five due:eom recur:monthly};
|
||||
|
||||
my $output = qx{../src/task rc:count.rc count};
|
||||
like ($output, qr/^5$/ms, 'count');
|
||||
like ($output, qr/^5\n/ms, 'count');
|
||||
|
||||
$output = qx{../src/task rc:count.rc count status:deleted rc.debug:1};
|
||||
like ($output, qr/^1$/ms, 'count status:deleted');
|
||||
like ($output, qr/^1\n/ms, 'count status:deleted');
|
||||
|
||||
$output = qx{../src/task rc:count.rc count e};
|
||||
like ($output, qr/^3$/ms, 'count e');
|
||||
like ($output, qr/^3\n/ms, 'count e');
|
||||
|
||||
$output = qx{../src/task rc:count.rc count description.startswith:f};
|
||||
like ($output, qr/^2$/ms, 'count description.startswith:f');
|
||||
like ($output, qr/^2\n/ms, 'count description.startswith:f');
|
||||
|
||||
$output = qx{../src/task rc:count.rc count due.any:};
|
||||
like ($output, qr/^1$/ms, 'count due.any:');
|
||||
like ($output, qr/^1\n/ms, 'count due.any:');
|
||||
|
||||
# Cleanup.
|
||||
unlink qw(pending.data completed.data undo.data backlog.data synch.key count.rc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue