(self, timestring)
| 902 | self.assertEqual(ssl.cert_time_to_seconds(timestring), timestamp) |
| 903 | |
| 904 | def cert_time_fail(self, timestring): |
| 905 | with self.assertRaises(ValueError): |
| 906 | ssl.cert_time_to_seconds(timestring) |
| 907 | |
| 908 | @unittest.skipUnless(utc_offset(), |
| 909 | 'local time needs to be different from UTC') |
no test coverage detected