2012-09-27 23:24:30 -07:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use Test::More;
|
|
|
|
use DDG::Test::Goodie;
|
|
|
|
|
|
|
|
zci answer_type => 'timezone_converter';
|
|
|
|
zci is_cached => 1;
|
|
|
|
|
|
|
|
ddg_goodie_test(
|
|
|
|
['DDG::Goodie::TimezoneConverter'],
|
2012-09-28 01:17:20 -07:00
|
|
|
'3:14 in GMT' =>
|
2012-09-27 23:24:30 -07:00
|
|
|
test_zci('3:14 (UTC) is 3:14 (GMT).'),
|
2012-09-28 10:05:56 -07:00
|
|
|
'8:10 A.M. AZOST into CAT' =>
|
|
|
|
test_zci('8:10 A.M. (AZOST, UTC-1) is 11:10 A.M. (CAT, UTC+2).'),
|
2012-09-27 23:24:30 -07:00
|
|
|
'1pm EDT into UTC+2' =>
|
2012-09-28 10:05:56 -07:00
|
|
|
test_zci('1:00 P.M. (EDT, UTC-4) is 7:00 P.M. (UTC+2).'),
|
2012-09-30 10:35:11 -07:00
|
|
|
'0pm into GMT' =>
|
|
|
|
test_zci('Noon (UTC) is noon (GMT).'),
|
|
|
|
'0am into UTC' =>
|
|
|
|
test_zci('Midnight (UTC) is midnight (UTC).'),
|
2012-09-27 23:24:30 -07:00
|
|
|
'1 into UTC -2 ' =>
|
|
|
|
test_zci('1:00 (UTC) is 23:00, 1 day prior (UTC-2).'),
|
|
|
|
' 1 into UTC-1' =>
|
|
|
|
test_zci('1:00 (UTC) is 0:00 (UTC-1).'),
|
|
|
|
'21 FNT into EET' =>
|
|
|
|
test_zci('21:00 (FNT, UTC-2) is 1:00, 1 day after (EET, UTC+2).'),
|
|
|
|
'23:00:00 InTo UTC+1' =>
|
|
|
|
test_zci('23:00 (UTC) is 0:00, 1 day after (UTC+1).'),
|
|
|
|
'23:00:01 Into UTC+1' =>
|
|
|
|
test_zci('23:00:01 (UTC) is 0:00:01, 1 day after (UTC+1).'),
|
|
|
|
'13:15:00 UTC-0:30 into UTC+0:30' =>
|
|
|
|
test_zci('13:15 (UTC-0:30) is 13:15 (UTC+0:30).'),
|
|
|
|
# ok, this is unlikely to happen without trying to do that
|
|
|
|
'19:42:42 BIT into GMT+100' =>
|
|
|
|
test_zci('19:42:42 (BIT, UTC-12) is 11:42:42, 5 days after (GMT+100).'),
|
|
|
|
'19:42:42 CHADT into GMT-100' =>
|
|
|
|
test_zci('19:42:42 (CHADT, UTC+13:45) is 1:57:42, 4 days prior (GMT-100).'),
|
|
|
|
);
|
|
|
|
|
|
|
|
done_testing;
|