- The 'dateformat' settings now default to the ISO-8601 standard of 'Y-M-D'.
This commit is contained in:
Paul Beckingham 2013-03-30 17:42:45 -04:00
parent 0fd3ddbe57
commit 03cb5af7be
23 changed files with 50 additions and 31 deletions

View file

@ -33,7 +33,8 @@ use Test::More tests => 26;
# Create the rc file.
if (open my $fh, '>', 'uuid.rc')
{
print $fh "data.location=.\n";
print $fh "data.location=.\n",
"dateformat=m/d/Y\n";
close $fh;
ok (-r 'uuid.rc', 'Created uuid.rc');
}