(self)
| 52 | _BasicLoader().load("namespacing") |
| 53 | |
| 54 | def doesnt_duplicate_parent_dir_addition(self): |
| 55 | _BasicLoader().load("namespacing") |
| 56 | _BasicLoader().load("namespacing") |
| 57 | # If the bug is present, this will be 2 at least (and often more, since |
| 58 | # other tests will pollute it (!). |
| 59 | assert sys.path.count(support) == 1 |
| 60 | |
| 61 | def can_load_package(self): |
| 62 | loader = _BasicLoader() |
nothing calls this directly
no test coverage detected