(self, basedir: Path)
| 55 | yield tmp_path |
| 56 | |
| 57 | def test_basic_init(self, basedir: Path) -> None: |
| 58 | conftest = PytestPluginManager() |
| 59 | p = basedir / "adir" |
| 60 | assert ( |
| 61 | conftest._rget_with_confmod("a", p, importmode="prepend", rootpath=basedir)[ |
| 62 | 1 |
| 63 | ] |
| 64 | == 1 |
| 65 | ) |
| 66 | |
| 67 | def test_immediate_initialiation_and_incremental_are_the_same( |
| 68 | self, basedir: Path |
nothing calls this directly
no test coverage detected