(tmpdir)
| 1160 | |
| 1161 | |
| 1162 | def test_pypkgdir_unimportable(tmpdir): |
| 1163 | pkg = tmpdir.ensure("pkg1-1", dir=1) # unimportable |
| 1164 | pkg.ensure("__init__.py") |
| 1165 | subdir = pkg.ensure("subdir/__init__.py").dirpath() |
| 1166 | assert subdir.pypkgpath() == subdir |
| 1167 | assert subdir.ensure("xyz.py").pypkgpath() == subdir |
| 1168 | assert not pkg.pypkgpath() |
| 1169 | |
| 1170 | |
| 1171 | def test_isimportable(): |