(self)
| 218 | version('unknown-package') |
| 219 | |
| 220 | def test_egg(self): |
| 221 | egg = self.site_dir.joinpath('foo-3.6.egg') |
| 222 | egg.mkdir() |
| 223 | with self.add_sys_path(egg): |
| 224 | with self.assertRaises(PackageNotFoundError): |
| 225 | version('foo') |
| 226 | |
| 227 | |
| 228 | class MissingSysPath(fixtures.OnSysPath, unittest.TestCase): |
nothing calls this directly
no test coverage detected