Horizontal Space

- Modified default report definitions to use shorter column labels, namely
  'Proj' and 'Urg'.  This results in less horizontal space use.
- Adjusted unit tests accordingly.
This commit is contained in:
Paul Beckingham 2013-02-24 16:31:31 -05:00
parent 330761e997
commit 3d4bad3034
5 changed files with 25 additions and 25 deletions

View file

@ -33,10 +33,11 @@ use Test::More tests => 6;
# Create the rc file.
if (open my $fh, '>', 'bug.rc')
{
print $fh "data.location=.\n";
print $fh "bulk=100\n";
print $fh "confirmation=no\n";
print $fh "print.empty.columns=yes\n";
print $fh "data.location=.\n",
"bulk=100\n",
"confirmation=no\n",
"print.empty.columns=yes\n",
"report.ls.labels=ID,Project,Pri,Description\n";
close $fh;
ok (-r 'bug.rc', 'Created bug.rc');
}