(self, s)
| 163 | ' 1994-02-03T00:00:00 ', |
| 164 | ]) |
| 165 | def test_iso2time_formats(self, s): |
| 166 | # test iso2time for supported dates. |
| 167 | test_t = 760233600 # assume broken POSIX counting of seconds |
| 168 | self.assertEqual(iso2time(s), test_t, s) |
| 169 | self.assertEqual(iso2time(s.lower()), test_t, s.lower()) |
| 170 | self.assertEqual(iso2time(s.upper()), test_t, s.upper()) |
| 171 | |
| 172 | @support.subTests('test', [ |
| 173 | '', |
nothing calls this directly
no test coverage detected