(self)
| 1952 | |
| 1953 | # Test error conditions |
| 1954 | def testEmptyString(self): |
| 1955 | with self.assertRaises(ValueError): |
| 1956 | tz.tzical(StringIO("")) |
| 1957 | |
| 1958 | def testMultiZoneGet(self): |
| 1959 | tzic = tz.tzical(StringIO(TZICAL_EST5EDT + TZICAL_PST8PDT)) |
nothing calls this directly
no outgoing calls
no test coverage detected