Unit Tests

- Filters must precede write-commands on the command line.
This commit is contained in:
Paul Beckingham
2011-07-31 09:49:23 -04:00
parent 4a99723129
commit 01d3da90ae
4 changed files with 19 additions and 17 deletions

View File

@@ -33,7 +33,8 @@ use Test::More tests => 24;
# Create the rc file.
if (open my $fh, '>', 'abbrev.rc')
{
print $fh "data.location=.\n";
print $fh "data.location=.\n",
"abbreviation.minimum=1\n";
close $fh;
ok (-r 'abbrev.rc', 'Created abbrev.rc');
}