(self, path1: Path)
| 181 | assert m.__name__ == "hello_123" |
| 182 | |
| 183 | def test_a(self, path1: Path) -> None: |
| 184 | otherdir = path1 / "otherdir" |
| 185 | mod = import_path(otherdir / "a.py", root=path1) |
| 186 | assert mod.result == "got it" # type: ignore[attr-defined] |
| 187 | assert mod.__name__ == "otherdir.a" |
| 188 | |
| 189 | def test_b(self, path1: Path) -> None: |
| 190 | otherdir = path1 / "otherdir" |
nothing calls this directly
no test coverage detected