(self, path1: Path)
| 187 | assert mod.__name__ == "otherdir.a" |
| 188 | |
| 189 | def test_b(self, path1: Path) -> None: |
| 190 | otherdir = path1 / "otherdir" |
| 191 | mod = import_path(otherdir / "b.py", root=path1) |
| 192 | assert mod.stuff == "got it" # type: ignore[attr-defined] |
| 193 | assert mod.__name__ == "otherdir.b" |
| 194 | |
| 195 | def test_c(self, path1: Path) -> None: |
| 196 | otherdir = path1 / "otherdir" |
nothing calls this directly
no test coverage detected