(self)
| 1509 | self.assertIs(tz0, tz1) |
| 1510 | |
| 1511 | def test_no_cache(self): |
| 1512 | |
| 1513 | tz0 = self.klass("Europe/Lisbon") |
| 1514 | tz1 = self.klass.no_cache("Europe/Lisbon") |
| 1515 | |
| 1516 | self.assertIsNot(tz0, tz1) |
| 1517 | |
| 1518 | def test_cache_reset_tzpath(self): |
| 1519 | """Test that the cache persists when tzpath has been changed. |
nothing calls this directly
no test coverage detected