1print "1..4\n";
2
3use Time::Object;
4print "ok 1\n";
5
6my $t = gmtime(315532800); # 00:00:00 1/1/1980
7
8print "not " if ($t->year != 1980);
9print "ok 2\n";
10
11print "not " if ($t->hour);
12print "ok 3\n";
13
14print "not " if ($t->mon != 1);
15print "ok 4\n";
16