(self, path1: Path)
| 193 | assert mod.__name__ == "otherdir.b" |
| 194 | |
| 195 | def test_c(self, path1: Path) -> None: |
| 196 | otherdir = path1 / "otherdir" |
| 197 | mod = import_path(otherdir / "c.py", root=path1) |
| 198 | assert mod.value == "got it" # type: ignore[attr-defined] |
| 199 | |
| 200 | def test_d(self, path1: Path) -> None: |
| 201 | otherdir = path1 / "otherdir" |
nothing calls this directly
no test coverage detected