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 108 109 110 111 112 113
|
#!/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("firstday",$test[2]);
$dmt->config("week1ofyear",$test[1]);
return 0;
}
my @ret = $obj->week_of_year(@test);
return @ret;
}
my $tests="
config jan4 1 => 0
2006 4 => [ 2006 1 23 ]
2007 4 => [ 2007 1 22 ]
2002 4 => [ 2002 1 21 ]
2003 4 => [ 2003 1 20 ]
2004 4 => [ 2004 1 19 ]
2010 4 => [ 2010 1 25 ]
2000 4 => [ 2000 1 24 ]
config jan4 7 => 0
2006 4 => [ 2006 1 22 ]
2007 4 => [ 2007 1 21 ]
2002 4 => [ 2002 1 20 ]
2003 4 => [ 2003 1 19 ]
2004 4 => [ 2004 1 25 ]
2010 4 => [ 2010 1 24 ]
2000 4 => [ 2000 1 23 ]
config jan1 1 => 0
2006 4 => [ 2006 1 16 ]
2007 4 => [ 2007 1 22 ]
2002 4 => [ 2002 1 21 ]
2003 4 => [ 2003 1 20 ]
2004 4 => [ 2004 1 19 ]
2010 4 => [ 2010 1 18 ]
2000 4 => [ 2000 1 17 ]
config jan1 7 => 0
2006 4 => [ 2006 1 22 ]
2007 4 => [ 2007 1 21 ]
2002 4 => [ 2002 1 20 ]
2003 4 => [ 2003 1 19 ]
2004 4 => [ 2004 1 18 ]
2010 4 => [ 2010 1 17 ]
2000 4 => [ 2000 1 16 ]
config jan4 1 => 0
2007 02 => [ 2007 1 8 ]
2008 02 => [ 2008 1 7 ]
";
$::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:
|