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
|
#!/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");
sub test {
my($date,$first) = @_;
$obj->set("date",$date);
return $obj->week_of_year($first);
}
my $tests="
# Date, FirstDate
[ 2008 01 01 00 00 00 ] 7 => 1
[ 2008 01 06 00 00 00 ] 7 => 2
[ 2008 12 23 00 00 00 ] 7 => 52
[ 2008 12 28 00 00 00 ] 7 => 53
[ 2008 01 01 00 00 00 ] 1 => 1
[ 2008 01 06 00 00 00 ] 1 => 1
[ 2008 12 23 00 00 00 ] 1 => 52
[ 2008 12 28 00 00 00 ] 1 => 52
[ 2008 12 29 00 00 00 ] 1 => 53
[ 2005 01 01 00 00 00 ] 7 => 0
[ 2005 01 06 00 00 00 ] 7 => 1
[ 2005 12 23 00 00 00 ] 7 => 51
[ 2005 12 28 00 00 00 ] 7 => 52
[ 2005 01 01 00 00 00 ] 1 => 0
[ 2005 01 06 00 00 00 ] 1 => 1
[ 2005 12 23 00 00 00 ] 1 => 51
[ 2005 12 28 00 00 00 ] 1 => 52
[ 2005 12 29 00 00 00 ] 1 => 52
";
$::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:
|