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:
Paul Beckingham
2012-03-17 10:46:05 -04:00
parent 80d6655709
commit ac4d90f1f6
18 changed files with 66 additions and 65 deletions

View File

@@ -122,7 +122,7 @@ qx{../src/task rc:dep.rc add Six recurring due:tomorrow recur:daily};
# [20]
qx{../src/task rc:dep.rc ls}; # To force handleRecurrence call.
$output = qx{echo '-- y' | ../src/task rc:dep.rc 6 modify dep:5};
$output = qx{echo 'y' | ../src/task rc:dep.rc 6 modify dep:5};
like ($output, qr/Modified \d+ task/, 'dependencies - recurring task depending on another task');
# [21]
@@ -175,16 +175,16 @@ qx{../src/task rc:dep.rc add Four};
qx{../src/task rc:dep.rc 2 modify dep:1; ../src/task rc:dep.rc 3 modify dep:2; ../src/task rc:dep.rc 4 modify dep:3};
# [30,31]
$output = qx{echo '-- y' | ../src/task rc:dep.rc 2 do};
$output = qx{echo 'y' | ../src/task rc:dep.rc 2 do};
like ($output, qr/fixed/, 'dependencies - user prompted to fix broken chain after completing a blocked task');
like ($output, qr/is blocked by/, 'dependencies - user nagged for completing a blocked task');
# [32]
$output = qx{echo '-- y' | ../src/task rc:dep.rc 1 do};
$output = qx{echo 'y' | ../src/task rc:dep.rc 1 do};
unlike ($output, qr/fixed/, 'dependencies - user not prompted to fix broken chain when the head of the chain is marked as complete');
# [33]
$output = qx{echo '-- y' | ../src/task rc:dep.rc 4 del};
$output = qx{echo 'y' | ../src/task rc:dep.rc 4 del};
unlike ($output, qr/fixed/, 'dependencies - user not prompted to fix broken chain when the tail of the chain is deleted');
# [34]
@@ -203,12 +203,12 @@ qx{../src/task rc:dep.rc 4 modify dep:3};
qx{../src/task rc:dep.rc 5 modify dep:4};
# [35]
qx{echo '-- y' | ../src/task rc:dep.rc 2 do};
qx{echo 'y' | ../src/task rc:dep.rc 2 do};
$output = qx{../src/task rc:dep.rc depreport};
like ($output, qr/\s1\s+One\s*\n\s2\s+1\s+Three\s*\n\s3\s+2\s+Four\s*\n\s4\s+3\s+Five/, 'dependencies - fixed chain after completing a blocked task');
# [36]
qx{echo "-- Y\nY\n" | ../src/task rc:dep.rc 2 del};
qx{echo "Y\nY\n" | ../src/task rc:dep.rc 2 del};
$output = qx{../src/task rc:dep.rc depreport};
like ($output, qr/\s1\s+One\s*\n\s2\s+1\s+Four\s*\n\s3\s+2\s+Five/, 'dependencies - fixed chain after deleting a blocked task');