summaryrefslogtreecommitdiff
path: root/ext/Time-Piece/t/03compare.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Time-Piece/t/03compare.t')
-rw-r--r--ext/Time-Piece/t/03compare.t19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/Time-Piece/t/03compare.t b/ext/Time-Piece/t/03compare.t
deleted file mode 100644
index ccd8535829..0000000000
--- a/ext/Time-Piece/t/03compare.t
+++ /dev/null
@@ -1,19 +0,0 @@
-use Test;
-BEGIN { plan tests => 5 }
-use Time::Piece;
-
-my @t = ('2002-01-01 00:00',
- '2002-01-01 01:20');
-
-@t = map Time::Piece->strptime($_, '%Y-%m-%d %H:%M'), @t;
-
-ok($t[0] < $t[1]);
-
-ok($t[0] != $t[1]);
-
-ok($t[0] == $t[0]);
-
-ok($t[0] != $t[1]);
-
-ok($t[0] <= $t[1]);
-