Beispiel #1
0
 def test_gps_from_string(self):
     for date, timestamp, leapseconds in self.combinations:
         self.assertEqual(clock.gps_from_string(date),
                          timestamp + leapseconds)
Beispiel #2
0
 def test_gps_from_string(self):
     for date, timestamp, leapseconds in self.combinations:
         self.assertEqual(clock.gps_from_string(date), timestamp + leapseconds)
Beispiel #3
0
 def test_utc_to_gps(self):
     for date, _, _ in self.combinations:
         self.assertEqual(clock.utc_to_gps(clock.utc_from_string(date)),
                          clock.gps_from_string(date))
Beispiel #4
0
 def test_utc_to_gps(self):
     for date, _, _ in self.combinations:
         self.assertEqual(clock.utc_to_gps(clock.utc_from_string(date)),
                          clock.gps_from_string(date))