mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-19 19:03:07 +02:00
Feature Pulled
- Removed the feature that allows commands to be piped in to stdin, and appended to any existing command line. This feature is conditionally compiled, controlled by the FEATURE_STDIN define in main.h - Many unit tests contained "echo '-- y'", and now use "echo 'y'" because the '--' is no longer supported on stdin. - Thanks to the IRC team for testing, including Bryce Harrington, Sam Stuck, Owen Clarke, Greg Grossmeier.
This commit is contained in:
parent
80d6655709
commit
ac4d90f1f6
18 changed files with 66 additions and 65 deletions
|
@ -49,13 +49,13 @@ like ($output, qr/2.+R/ms, 'Found child 0');
|
|||
like ($output, qr/3.+R/ms, 'Found child 1');
|
||||
like ($output, qr/4.+R/ms, 'Found child 2');
|
||||
|
||||
qx{echo '-- y' | ../src/task rc:bug.rc 2 mod project:P};
|
||||
qx{echo 'y' | ../src/task rc:bug.rc 2 mod project:P};
|
||||
$output = qx{../src/task rc:bug.rc list};
|
||||
like ($output, qr/2\s+P.+R/ms, 'Found modified child 0');
|
||||
like ($output, qr/3\s+P.+R/ms, 'Found modified child 1 (propagated from 0)');
|
||||
like ($output, qr/4\s+P.+R/ms, 'Found modified child 2 (propagated from 0)');
|
||||
|
||||
qx{echo '-- y' | ../src/task rc:bug.rc 1 mod priority:H};
|
||||
qx{echo 'y' | ../src/task rc:bug.rc 1 mod priority:H};
|
||||
$output = qx{../src/task rc:bug.rc list};
|
||||
like ($output, qr/2\s+P.+H.+R/ms, 'Found modified child 0 (propagated from parent');
|
||||
like ($output, qr/3\s+P.+H.+R/ms, 'Found modified child 1 (propagated from parent)');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue