repo.or.cz
/
koha.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bug 5308: subscriptionroutinglist more strict
[koha.git]
/
t
/
Koha.t
blob
c06a40658392def3b53f1deb300869a05dee848d
1
#!/usr/bin/perl
2
use
strict
;
3
use
warnings
;
4
5
use
Test
::
More tests
=>
2
;
6
7
use_ok
(
'C4::Koha'
);
8
9
#
10
# test that &slashifyDate returns correct (non-US) date
11
#
12
my
$date
=
"01/01/2002"
;
13
my
$newdate
= &
slashifyDate
(
"2002-01-01"
);
14
15
ok
(
$date
eq
$newdate
,
'slashifyDate'
);