1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::Inter;
$::ti = new Test::Inter $0;
require "tests-dm5.pl";
Date_Init("TZ=EST");
my $tests="
'Wed Feb 7 1996 8:00' +1:1:1:1 '0 =>' 1996020809:01:01
'Wed Nov 20 1996 noon' +0:5:0:0 '0 =>' 1996112017:00:00
'Wed Nov 20 1996 noon' +0:13:0:0 '0 =>' 1996112101:00:00
'Wed Nov 20 1996 noon' +3:2:0:0 '0 =>' 1996112314:00:00
'Wed Nov 20 1996 noon' -3:2:0:0 '0 =>' 1996111710:00:00
'Wed Nov 20 1996 noon' +3:13:0:0 '0 =>' 1996112401:00:00
'Wed Nov 20 1996 noon' +6:2:0:0 '0 =>' 1996112614:00:00
'Dec 31 1996 noon' +1:2:0:0 '0 =>' 1997010114:00:00
'Jan 31 1997 23:59:59' '+ 1 sec' '0 =>' 1997020100:00:00
'20050215 13:59:11' -10h '0 =>' 2005021503:59:11
'20050215 13:59:11' -10h+0s '0 =>' 2005021503:59:11
";
$::ti->tests(func => \&DateCalc,
tests => $tests);
$::ti->done_testing();
#Local Variables:
#mode: cperl
#indent-tabs-mode: nil
#cperl-indent-level: 3
#cperl-continued-statement-offset: 2
#cperl-continued-brace-offset: 0
#cperl-brace-offset: 0
#cperl-brace-imaginary-offset: 0
#cperl-label-offset: 0
#End:
|