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:
18
test/rc.t
18
test/rc.t
@@ -34,7 +34,7 @@ use Test::More tests => 15;
|
||||
# Create the rc file, using rc.name:value.
|
||||
unlink 'foo.rc';
|
||||
rmtree 'foo', 0, 0;
|
||||
qx{echo '-- y'|../src/task rc:foo.rc rc.data.location:foo};
|
||||
qx{echo 'y'|../src/task rc:foo.rc rc.data.location:foo};
|
||||
|
||||
ok (-r 'foo.rc', 'Created default rc file');
|
||||
ok (-d 'foo', 'Created default data directory');
|
||||
@@ -46,40 +46,40 @@ unlink 'foo.rc';
|
||||
ok (!-r 'foo.rc', 'Removed foo.rc');
|
||||
|
||||
# Do it all again, with rc.name=value.
|
||||
qx{echo '-- y'|../src/task rc:foo.rc rc.data.location:foo};
|
||||
qx{echo 'y'|../src/task rc:foo.rc rc.data.location:foo};
|
||||
|
||||
ok (-r 'foo.rc', 'Created default rc file');
|
||||
ok (-d 'foo', 'Created default data directory');
|
||||
|
||||
# Add a setting.
|
||||
qx{echo '-- y'|../src/task rc:foo.rc config must_be_unique old};
|
||||
qx{echo 'y'|../src/task rc:foo.rc config must_be_unique old};
|
||||
my $output = qx{../src/task rc:foo.rc show};
|
||||
like ($output, qr/^must_be_unique\s+old/ms, 'config setting a new value');
|
||||
|
||||
qx{echo '-- y'|../src/task rc:foo.rc config must_be_unique new};
|
||||
qx{echo 'y'|../src/task rc:foo.rc config must_be_unique new};
|
||||
$output = qx{../src/task rc:foo.rc show};
|
||||
like ($output, qr/^must_be_unique\s+new/ms, 'config overwriting an existing value');
|
||||
|
||||
qx{echo '-- y'|../src/task rc:foo.rc config must_be_unique ''};
|
||||
qx{echo 'y'|../src/task rc:foo.rc config must_be_unique ''};
|
||||
$output = qx{../src/task rc:foo.rc show};
|
||||
like ($output, qr/^must_be_unique/ms, 'config setting a blank value');
|
||||
|
||||
qx{echo '-- y'|../src/task rc:foo.rc config must_be_unique};
|
||||
qx{echo 'y'|../src/task rc:foo.rc config must_be_unique};
|
||||
$output = qx{../src/task rc:foo.rc show};
|
||||
unlike ($output, qr/^must_be_unique/ms, 'config removing a value');
|
||||
|
||||
# 'report.:b' is designed to get past the config command checks for recognized
|
||||
# names.
|
||||
qx{echo '-- y'|../src/task rc:foo.rc config -- report.:b +c};
|
||||
qx{echo 'y'|../src/task rc:foo.rc config -- report.:b +c};
|
||||
$output = qx{../src/task rc:foo.rc show};
|
||||
like ($output, qr/^report\.:b\s+\+c/ms, 'the -- operator is working');
|
||||
|
||||
# Make sure the value is accepted if it has multiple words.
|
||||
qx{echo '-- y'|../src/task rc:foo.rc config must_be_unique 'one two three'};
|
||||
qx{echo 'y'|../src/task rc:foo.rc config must_be_unique 'one two three'};
|
||||
$output = qx{../src/task rc:foo.rc show};
|
||||
like ($output, qr/^must_be_unique\s+one two three/ms, 'config allows multi-word quoted values');
|
||||
|
||||
qx{echo '-- y'|../src/task rc:foo.rc config must_be_unique one two three};
|
||||
qx{echo 'y'|../src/task rc:foo.rc config must_be_unique one two three};
|
||||
$output = qx{../src/task rc:foo.rc show};
|
||||
like ($output, qr/^must_be_unique\s+one two three/ms, 'config allows multi-word unquoted values');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user