Unit Tests

- Removed debug arg.
This commit is contained in:
Paul Beckingham 2014-10-31 19:12:23 -04:00
parent bcc7e30dfc
commit 4c4204ee0d

View file

@ -52,7 +52,7 @@ qx{../src/task rc:$rc add three priority:L 2>&1};
qx{../src/task rc:$rc add four 2>&1}; qx{../src/task rc:$rc add four 2>&1};
# Test the '<=' operator. # Test the '<=' operator.
my $output = qx{../src/task rc:$rc ls 'priority <= M' rc.debug.parser=2 2>&1}; my $output = qx{../src/task rc:$rc ls 'priority <= M' 2>&1};
unlike ($output, qr/one/, "$ut: ls priority <= H --> !one"); unlike ($output, qr/one/, "$ut: ls priority <= H --> !one");
like ($output, qr/two/, "$ut: ls priority <= H --> two"); like ($output, qr/two/, "$ut: ls priority <= H --> two");
like ($output, qr/three/, "$ut: ls priority <= H --> three"); like ($output, qr/three/, "$ut: ls priority <= H --> three");