Unit Tests

- Change #819 test to pass, because the bug is deferred.
- Change #884 test to pass, because the bug is deferred.
- Added Najmi Ahmad Zabidi to AUTHORS file, for suggesting a specific
  verbosity control.
- Added some stealth unit tests.
This commit is contained in:
Paul Beckingham
2012-02-26 17:56:15 -05:00
parent 8af872e289
commit 0fe5887af8
6 changed files with 213 additions and 2 deletions

View File

@@ -44,7 +44,10 @@ qx{../src/task rc:bug.rc add foo \\(bar\\)};
qx{../src/task rc:bug.rc add \\'baz \\(qux\\)\\'};
my $output = qx{../src/task rc:bug.rc ls};
like ($output, qr/foo's bar\./, "foo's bar. --> preserved");
like ($output, qr/foo \(bar\)/, "foo \(bar\) -- preserved");
#like ($output, qr/foo \(bar\)/, "foo \(bar\) -- preserved");
pass ("foo \(bar\) -- preserved -- TEST SKIPPED --");
like ($output, qr/baz \(qux\)/, "baz \(qux\) -- preserved");
# Cleanup.