zeroclickinfo-goodies/t/UnixTime.t

20 lines
385 B
Perl
Raw Normal View History

2012-04-23 20:05:49 -07:00
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci answer_type => 'time_conversion';
zci is_cached => 1;
ddg_goodie_test(
[qw(
DDG::Goodie::UnixTime
)],
'time 0' => test_zci('Unix Time Conversion: Thu Jan 01 00:00:00 1970 +0000'),
'time 0000000000000' => test_zci('Unix Time Conversion: Thu Jan 01 00:00:00 1970 +0000')
2012-04-23 20:05:49 -07:00
);
done_testing;