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 52 53 54 55 56 57 58 59 60 61 62
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::Inter;
$::ti = new Test::Inter $0;
require "tests-dm5.pl";
Date_Init("TZ=EST");
Date_Init(qw( PersonalCnf=Manip5.cnf PathSep=! PersonalCnfPath=./t!. IgnoreGlobalCnf=1 ));
my $tests ="
2000-02-01 =>
[ 2000020100:00:00 [ Event1 Winter ] ]
2000-04-01 =>
[ 2000040100:00:00 [ Spring ] ]
2000-04-01 0 =>
[ 2000040100:00:00 [ Spring ]
2000040112:00:00 [ Event3 Spring ]
2000040113:00:00 [ Spring ] ]
'2000-04-01 12:30' =>
[ 2000040112:30:00 [ Event3 Spring ] ]
'2000-04-01 13:30' =>
[ 2000040113:30:00 [ Spring ] ]
2000-03-15 2000-04-10 =>
[ 2000031500:00:00 [ Winter ]
2000032200:00:00 [ Spring ]
2000040112:00:00 [ Event3 Spring ]
2000040113:00:00 [ Spring ] ]
2000-03-15 2000-04-10 1 =>
{ Event3 +0:0:0:0:1:0:0
Spring +0:0:2:5:0:0:0
Winter +0:0:1:0:0:0:0 }
2000-03-15 2000-04-10 2 =>
{ Event3+Spring +0:0:0:0:1:0:0
Spring +0:0:2:4:23:0:0
Winter +0:0:1:0:0:0:0 }
";
$::ti->tests(func => \&Events_List,
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:
|