(self)
| 307 | codectests = [] |
| 308 | |
| 309 | def setUp(self): |
| 310 | try: |
| 311 | self.open_mapping_file().close() # test it to report the error early |
| 312 | except (OSError, HTTPException): |
| 313 | self.skipTest("Could not retrieve "+self.mapfileurl) |
| 314 | |
| 315 | def open_mapping_file(self): |
| 316 | return support.open_urlresource(self.mapfileurl, encoding="utf-8") |
nothing calls this directly
no test coverage detected