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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::Inter;
$::ti = new Test::Inter $0;
require "tests.pl";
our $dmt = new Date::Manip::TZ;
our $obj = $dmt->base();
$dmt->config("forcedate","now,America/New_York");
sub test {
my(@test)=@_;
if ($test[0] eq "config") {
$dmt->config("jan1week1",$test[1]);
$dmt->config("firstday",$test[2]);
return 0;
}
my @ret = $obj->week1_day1(@test);
return @ret;
}
my $tests="
config 0 1 => 0
2006 => [ 2006 1 2 ]
2007 => [ 2007 1 1 ]
2002 => [ 2001 12 31 ]
2003 => [ 2002 12 30 ]
2004 => [ 2003 12 29 ]
2010 => [ 2010 1 4 ]
2000 => [ 2000 1 3 ]
config 0 7 => 0
2006 => [ 2006 1 1 ]
2007 => [ 2006 12 31 ]
2002 => [ 2001 12 30 ]
2003 => [ 2002 12 29 ]
2004 => [ 2004 1 4 ]
2010 => [ 2010 1 3 ]
2000 => [ 2000 1 2 ]
config 1 1 => 0
2006 => [ 2005 12 26 ]
2007 => [ 2007 1 1 ]
2002 => [ 2001 12 31 ]
2003 => [ 2002 12 30 ]
2004 => [ 2003 12 29 ]
2010 => [ 2009 12 28 ]
2000 => [ 1999 12 27 ]
config 1 7 => 0
2006 => [ 2006 1 1 ]
2007 => [ 2006 12 31 ]
2002 => [ 2001 12 30 ]
2003 => [ 2002 12 29 ]
2004 => [ 2003 12 28 ]
2010 => [ 2009 12 27 ]
2000 => [ 1999 12 26 ]
";
$::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:
|