Unit Tests

- Modified several unit tests to accomodate new column names.
This commit is contained in:
Paul Beckingham 2011-05-08 17:14:28 -04:00
parent 0d9d01324e
commit 04033911c3
10 changed files with 46 additions and 130 deletions

View file

@ -34,7 +34,8 @@ use Test::More tests => 8;
if (open my $fh, '>', 'color.rc')
{
print $fh "data.location=.\n",
"color.pri.H=red\n";
"color.pri.H=red\n",
"fontunderline=no\n";
close $fh;
ok (-r 'color.rc', 'Created color.rc');
}