1#!./perl 2 3use Test::More; 4 5my(@times, @methods); 6BEGIN { 7 @times = (-2**55, -2**50, -2**33, -2**31-1, -1, 0, 1, 2**31-1, 2**33, 2**50, 2**55, time); 8 @methods = qw(sec min hour mday mon year wday yday isdst); 9 10 plan tests => (@times * (@methods + 1)) + 1; 11 12 use_ok Time::localtime; 13} 14 15for my $time (@times) { 16 my $localtime = localtime $time; # This is the OO localtime. 17 my @localtime = CORE::localtime $time; # This is the localtime function 18 19 is @localtime, 9, "localtime($time)"; 20 for my $method (@methods) { 21 is $localtime->$method, shift @localtime, "localtime($time)->$method"; 22 } 23} 24