summaryrefslogtreecommitdiff
path: root/t/format.t
diff options
context:
space:
mode:
Diffstat (limited to 't/format.t')
-rw-r--r--t/format.t8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/format.t b/t/format.t
new file mode 100644
index 0000000..b94c327
--- /dev/null
+++ b/t/format.t
@@ -0,0 +1,8 @@
+#!perl
+use Test::More;
+use DateTime;
+use DateTime::Format::GeekTime;
+
+my $dt=DateTime->new(year=>2010,month=>3,day=>8,
+ hour=>16,minute=>56,seconds=>23);
+diag DateTime::Format::GeekTime->format_datetime($dt);