(self, path1: Path)
| 198 | assert mod.value == "got it" # type: ignore[attr-defined] |
| 199 | |
| 200 | def test_d(self, path1: Path) -> None: |
| 201 | otherdir = path1 / "otherdir" |
| 202 | mod = import_path(otherdir / "d.py", root=path1) |
| 203 | assert mod.value2 == "got it" # type: ignore[attr-defined] |
| 204 | |
| 205 | def test_import_after(self, tmp_path: Path) -> None: |
| 206 | tmp_path.joinpath("xxxpackage").mkdir() |
nothing calls this directly
no test coverage detected