(pytester: Pytester)
| 262 | |
| 263 | |
| 264 | def test_plugin_already_exists(pytester: Pytester) -> None: |
| 265 | config = pytester.parseconfig("-p", "terminal") |
| 266 | assert config.option.plugins == ["terminal"] |
| 267 | config._do_configure() |
| 268 | config._ensure_unconfigure() |
| 269 | |
| 270 | |
| 271 | def test_exclude(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected