- New 'ls' report.
This commit is contained in:
Paul Beckingham
2013-10-19 20:38:09 -04:00
parent c8aca24e63
commit 09fce4df46
8 changed files with 27 additions and 17 deletions

View File

@@ -33,7 +33,12 @@ use Test::More tests => 18;
# Create the rc file.
if (open my $fh, '>', 'caseless.rc')
{
print $fh "data.location=.\n";
print $fh "data.location=.\n",
"report.ls.columns=id,project,priority,description\n",
"report.ls.labels=ID,Proj,Pri,Description\n",
"report.ls.sort=priority-,project+\n",
"report.ls.filter=status:pending\n";
close $fh;
ok (-r 'caseless.rc', 'Created caseless.rc');
}