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    use_ok Time::localtime;
11}
12
13for my $time (@times) {
14    my $localtime = localtime $time;          # This is the OO localtime.
15    my @localtime = CORE::localtime $time;    # This is the localtime function
16
17    is @localtime, 9, "localtime($time)";
18    for my $method (@methods) {
19        is $localtime->$method, shift @localtime, "localtime($time)->$method";
20    }
21}
22
23done_testing();
24