Deprecated Feature Removal

- Removed deprecated 'echo.command' setting, in favor of the 'header' and
  'affected' verbosity tokens.
This commit is contained in:
Paul Beckingham 2013-10-20 14:40:57 -04:00
parent 49c07acb05
commit 2cbae3fb9c
9 changed files with 16 additions and 28 deletions

View file

@ -34,8 +34,7 @@ use Test::More tests => 16;
if (open my $fh, '>', 'delete.rc')
{
print $fh "data.location=.\n",
"confirmation=no\n",
"echo.command=no\n";
"confirmation=no\n";
close $fh;
ok (-r 'delete.rc', 'Created delete.rc');
}

View file

@ -34,7 +34,6 @@ use Test::More tests => 11;
if (open my $fh, '>', 'undo.rc')
{
print $fh "data.location=.\n",
"echo.command=no\n",
"confirmation=no\n";
close $fh;
ok (-r 'undo.rc', 'Created undo.rc');

View file

@ -34,8 +34,7 @@ use Test::More tests => 8;
if (open my $fh, '>', 'verbose.rc')
{
print $fh "data.location=.\n",
"echo.command=off\n";
print $fh "print.empty.columns=yes\n";
"print.empty.columns=yes\n";
close $fh;
ok (-r 'verbose.rc', 'Created verbose.rc');
}