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
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::Inter;
$::ti = new Test::Inter $0;
require "tests.pl";
our $obj = new Date::Manip::Date;
$obj->config("forcedate","now,America/New_York");
$obj->config("ConfigFile","Manip.cnf");
sub test {
my(@test)=@_;
my($date) = shift(@test);
$obj->set("date",$date);
return $obj->holiday();
}
my $tests=qq{
[ 2009 08 01 12 00 00 ] => __undef__
[ 2009 08 03 03 00 00 ] => __undef__
[ 2009 08 03 12 00 00 ] => __undef__
[ 2009 07 04 00 00 00 ] => __undef__
[ 2009 07 03 00 00 00 ] => 'Independence Day'
[ 2009 11 26 00 00 00 ] => Thanksgiving
[ 2009 11 27 00 00 00 ] => __blank__
[ 1999 06 02 00 00 00 ] => 'A special test holiday for 1999'
[ 1999 12 31 00 00 00 ] => "New Year's Day"
[ 2000 01 01 00 00 00 ] => __undef__
[ 2001 01 01 00 00 00 ] => "New Year's Day"
};
$::ti->tests(func => \&test,
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:
|