summaryrefslogtreecommitdiff
path: root/t/format.t
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2010-03-08 16:57:13 +0000
committerdakkar <dakkar@thenautilus.net>2010-03-08 16:57:13 +0000
commitc96d19fca5094995d02911dd293e10e716ed7ce3 (patch)
treee52f6cd712e75ebfc360ae72b504073177c14c82 /t/format.t
downloadDateTime-Format-GeekTime-c96d19fca5094995d02911dd293e10e716ed7ce3.tar.gz
DateTime-Format-GeekTime-c96d19fca5094995d02911dd293e10e716ed7ce3.tar.bz2
DateTime-Format-GeekTime-c96d19fca5094995d02911dd293e10e716ed7ce3.zip
first idea
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);