summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-05-29 15:29:37 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-29 15:29:37 +0000
commit2857d2f75f0c461bb6df408dedb4450b2e1c89de (patch)
tree318f5bfaa7b94a8224809a40d0069fb91045eda1 /t
parentf7a45afb043dafc521db9513c0ecf764944fe22a (diff)
downloadperl-2857d2f75f0c461bb6df408dedb4450b2e1c89de.tar.gz
Add tests for Time::gmtime and Time::localtime.
p4raw-id: //depot/perl@10291
Diffstat (limited to 't')
-rw-r--r--t/lib/1_compile.t3
-rw-r--r--t/lib/time-gmtime.t57
-rw-r--r--t/lib/time-localtime.t57
3 files changed, 117 insertions, 0 deletions
diff --git a/t/lib/1_compile.t b/t/lib/1_compile.t
index 2670e7ad53..eb2d70bc7e 100644
--- a/t/lib/1_compile.t
+++ b/t/lib/1_compile.t
@@ -237,6 +237,9 @@ Tie::SubstrHash
Time::HiRes
Time::Local
Time::Piece
+Time::gmtime
+Time::localtime
+Time::tm
UNIVERSAL
User::grent
User::pwent
diff --git a/t/lib/time-gmtime.t b/t/lib/time-gmtime.t
new file mode 100644
index 0000000000..853ec3b6e3
--- /dev/null
+++ b/t/lib/time-gmtime.t
@@ -0,0 +1,57 @@
+#!./perl
+
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
+BEGIN {
+ our $hasgm;
+ eval { my $n = gmtime 0 };
+ $hasgm = 1 unless $@ && $@ =~ /unimplemented/;
+ unless ($hasgm) { print "1..0 # Skip: no gmtime\n"; exit 0 }
+}
+
+BEGIN {
+ our @gmtime = gmtime 0; # This is the function gmtime.
+ unless (@gmtime) { print "1..0 # Skip: gmtime failed\n"; exit 0 }
+}
+
+print "1..10\n";
+
+use Time::gmtime;
+
+print "ok 1\n";
+
+my $gmtime = gmtime 0 ; # This is the OO gmtime.
+
+print "not " unless $gmtime->sec == $gmtime[0];
+print "ok 2\n";
+
+print "not " unless $gmtime->min == $gmtime[1];
+print "ok 3\n";
+
+print "not " unless $gmtime->hour == $gmtime[2];
+print "ok 4\n";
+
+print "not " unless $gmtime->mday == $gmtime[3];
+print "ok 5\n";
+
+print "not " unless $gmtime->mon == $gmtime[4];
+print "ok 6\n";
+
+print "not " unless $gmtime->year == $gmtime[5];
+print "ok 7\n";
+
+print "not " unless $gmtime->wday == $gmtime[6];
+print "ok 8\n";
+
+print "not " unless $gmtime->yday == $gmtime[7];
+print "ok 9\n";
+
+print "not " unless $gmtime->isdst == $gmtime[8];
+print "ok 10\n";
+
+
+
+
diff --git a/t/lib/time-localtime.t b/t/lib/time-localtime.t
new file mode 100644
index 0000000000..357615c780
--- /dev/null
+++ b/t/lib/time-localtime.t
@@ -0,0 +1,57 @@
+#!./perl
+
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
+BEGIN {
+ our $haslocal;
+ eval { my $n = localtime 0 };
+ $haslocal = 1 unless $@ && $@ =~ /unimplemented/;
+ unless ($haslocal) { print "1..0 # Skip: no localtime\n"; exit 0 }
+}
+
+BEGIN {
+ our @localtime = localtime 0; # This is the function localtime.
+ unless (@localtime) { print "1..0 # Skip: localtime failed\n"; exit 0 }
+}
+
+print "1..10\n";
+
+use Time::localtime;
+
+print "ok 1\n";
+
+my $localtime = localtime 0 ; # This is the OO localtime.
+
+print "not " unless $localtime->sec == $localtime[0];
+print "ok 2\n";
+
+print "not " unless $localtime->min == $localtime[1];
+print "ok 3\n";
+
+print "not " unless $localtime->hour == $localtime[2];
+print "ok 4\n";
+
+print "not " unless $localtime->mday == $localtime[3];
+print "ok 5\n";
+
+print "not " unless $localtime->mon == $localtime[4];
+print "ok 6\n";
+
+print "not " unless $localtime->year == $localtime[5];
+print "ok 7\n";
+
+print "not " unless $localtime->wday == $localtime[6];
+print "ok 8\n";
+
+print "not " unless $localtime->yday == $localtime[7];
+print "ok 9\n";
+
+print "not " unless $localtime->isdst == $localtime[8];
+print "ok 10\n";
+
+
+
+