(self, timestring, timestamp)
| 899 | self.assertEqual(str(cx.exception), "only stream sockets are supported") |
| 900 | |
| 901 | def cert_time_ok(self, timestring, timestamp): |
| 902 | self.assertEqual(ssl.cert_time_to_seconds(timestring), timestamp) |
| 903 | |
| 904 | def cert_time_fail(self, timestring): |
| 905 | with self.assertRaises(ValueError): |
no test coverage detected