Ejemplo n.º 1
0
    def test_localUtcoffset_returns_a_positive_difference_in_hours_between_local_time_and_utc(self):
        localtime = datetime.datetime(2011, 8, 23, 10, 54, 23, 456)
        utctime = datetime.datetime(2011, 8, 23, 2, 54, 23, 567)

        local_utcoffset = util.local_utcoffset(localtime, utctime)
        self.assertEqual(local_utcoffset, 8)