- adapted makefile and unit tests to new place of test dir
This commit is contained in:
Federico Hernandez
2010-12-28 21:38:03 +01:00
parent 17ef077e27
commit 5d775fdc3e
176 changed files with 1288 additions and 1287 deletions

View File

@@ -40,9 +40,9 @@ if (open my $fh, '>', 'bug.rc')
}
# Bug #489 - tags.none: is not filtering tagless tasks
qx{../task rc:bug.rc add with +tag};
qx{../task rc:bug.rc add without};
my $output = qx{../task rc:bug.rc list tags.none:};
qx{../src/task rc:bug.rc add with +tag};
qx{../src/task rc:bug.rc add without};
my $output = qx{../src/task rc:bug.rc list tags.none:};
unlike ($output, qr/with /, 'tags.none: skips tagged');
like ($output, qr/without/, 'tags.none: finds tagless');