- 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

@ -72,13 +72,13 @@ EOF
ok (-r 'pending.data', 'Created pending.data');
}
my $output = qx{../task rc:time.rc timesheet};
my $output = qx{../src/task rc:time.rc timesheet};
like ($output, qr/Completed.+C0.+Started.+PS0/ms, 'one week of started and completed');
$output = qx{../task rc:time.rc timesheet 2};
$output = qx{../src/task rc:time.rc timesheet 2};
like ($output, qr/Completed.+C0.+Started.+PS0.+Completed.+C1.+Started.+PS1/ms, 'two weeks of started and completed');
$output = qx{../task rc:time.rc timesheet 3};
$output = qx{../src/task rc:time.rc timesheet 3};
like ($output, qr/Completed.+C0.+Started.+PS0.+Completed.+C1.+Started.+PS1.+Completed.+C2.+Started.+PS2/ms, 'three weeks of started and completed');
# Cleanup.