(self, path1: Path)
| 139 | ) |
| 140 | |
| 141 | def test_smoke_test(self, path1: Path) -> None: |
| 142 | obj = import_path(path1 / "execfile.py", root=path1) |
| 143 | assert obj.x == 42 # type: ignore[attr-defined] |
| 144 | assert obj.__name__ == "execfile" |
| 145 | |
| 146 | def test_renamed_dir_creates_mismatch( |
| 147 | self, tmp_path: Path, monkeypatch: MonkeyPatch |
nothing calls this directly
no test coverage detected