0376493cd4
to hold it and wrote tests for it, started marking other places for potential refactoring.
14 lines
262 B
Perl
14 lines
262 B
Perl
BEGIN { $| = 1; print "1..2\n"; }
|
|
END {print "not ok 1\n" unless $loaded;}
|
|
use C4::Koha;
|
|
$loaded = 1;
|
|
print "ok 1\n";
|
|
|
|
$date = "01/01/2002";
|
|
$newdate = &slashifyDate("2002-01-01");
|
|
|
|
if ($date eq $newdate) {
|
|
print "ok 2\n";
|
|
} else {
|
|
print "not ok 2\n";
|
|
}
|