示例#1
0
 def test_edt_to_utc(self):
     edt = '5/26/2014 4:00pm'
     utc = '2014-05-26 20:00:00 UTC+0000'
     self.assertEqual(edt_to_utc(edt), utc)
示例#2
0
 def test_edt_to_utc(self):
     edt = '5/26/2014 4:00pm'
     utc = '2014-05-26 20:00:00 UTC+0000'
     self.assertEqual(edt_to_utc(edt), utc)
示例#3
0
 def test_edt_to_utc_issue15(self):
     # date string for yahoo can contains 0 rather than 12.
     # This means that it cannot be parsed with %I see GH issue #15.
     edt = '4/21/2015 0:13am'
     utc = '2015-04-21 04:13:00 UTC+0000'
     self.assertEqual(edt_to_utc(edt), utc)
示例#4
0
 def test_edt_to_utc_issue15(self):
     # date string for yahoo can contains 0 rather than 12.
     # This means that it cannot be parsed with %I see GH issue #15.
     edt = '4/21/2015 0:13am'
     utc = '2015-04-21 04:13:00 UTC+0000'
     self.assertEqual(edt_to_utc(edt), utc)