use Test::More for t/Koha.t
[koha.git] / t / Koha.t
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');