(pytester: Pytester, plugin)
| 21 | @pytest.mark.parametrize("plugin", sorted(deprecated.DEPRECATED_EXTERNAL_PLUGINS)) |
| 22 | @pytest.mark.filterwarnings("default") |
| 23 | def test_external_plugins_integrated(pytester: Pytester, plugin) -> None: |
| 24 | pytester.syspathinsert() |
| 25 | pytester.makepyfile(**{plugin: ""}) |
| 26 | |
| 27 | with pytest.warns(pytest.PytestConfigWarning): |
| 28 | pytester.parseconfig("-p", plugin) |
| 29 | |
| 30 | |
| 31 | def test_fillfuncargs_is_deprecated() -> None: |
nothing calls this directly
no test coverage detected