Split wrappers and non-wrappers in test_load_initial_conftest_last_ordering

Seems better to test which one is which explicitly.
This commit is contained in:
Bruno Oliveira 2021-12-08 11:49:04 -03:00
parent 4038752bf3
commit 696f955ff8
1 changed files with 3 additions and 3 deletions

View File

@ -1264,16 +1264,16 @@ def test_load_initial_conftest_last_ordering(_config_for_test):
m = My() m = My()
pm.register(m) pm.register(m)
hc = pm.hook.pytest_load_initial_conftests hc = pm.hook.pytest_load_initial_conftests
values = hc._nonwrappers + hc._wrappers assert [x.function.__module__ for x in hc._nonwrappers] == [
expected = [
"_pytest.config", "_pytest.config",
m.__module__, m.__module__,
"_pytest.legacypath", "_pytest.legacypath",
"_pytest.pythonpath", "_pytest.pythonpath",
]
assert [x.function.__module__ for x in hc._wrappers] == [
"_pytest.capture", "_pytest.capture",
"_pytest.warnings", "_pytest.warnings",
] ]
assert [x.function.__module__ for x in values] == expected
def test_get_plugin_specs_as_list() -> None: def test_get_plugin_specs_as_list() -> None: