(self)
| 208 | time.strftime("%y", (1900, 1, 1, 0, 0, 0, 0, 0, 0)), "00") |
| 209 | |
| 210 | def test_y_after_1900(self): |
| 211 | self.assertEqual( |
| 212 | time.strftime("%y", (2013, 1, 1, 0, 0, 0, 0, 0, 0)), "13") |
| 213 | |
| 214 | if __name__ == '__main__': |
| 215 | unittest.main() |
nothing calls this directly
no test coverage detected