iUnit Tests

- Corrected test that changed columns in the ls report, but not the
  corresponding sort order.
This commit is contained in:
Paul Beckingham 2010-11-29 08:19:12 -05:00
parent 2b7452f9a7
commit d2fdc10f39

View file

@ -36,7 +36,8 @@ if (open my $fh, '>', 'hook.rc')
print $fh "data.location=.\n",
"hooks=on\n",
"hook.format-description_only=" . $ENV{'PWD'} . "/hook:description_only\n",
"report.ls.columns=id,project,priority,description_only\n";
"report.ls.columns=id,project,priority,description_only\n",
"report.ls.sort=priority-,project+\n";
close $fh;
ok (-r 'hook.rc', 'Created hook.rc');
}