Home | History | Annotate | Download | only in test

Lines Matching refs:timestring

684     def cert_time_ok(self, timestring, timestamp):
685 self.assertEqual(ssl.cert_time_to_seconds(timestring), timestamp)
687 def cert_time_fail(self, timestring):
689 ssl.cert_time_to_seconds(timestring)
700 timestring = "Jan 5 09:34:43 2018 GMT"
702 self.cert_time_ok(timestring, ts)
704 self.assertEqual(ssl.cert_time_to_seconds(cert_time=timestring), ts)