remove test_scope_fixture_caching1/2, they're now in a separate PR

This commit is contained in:
jakkdl 2024-03-15 15:54:17 +01:00
parent fa853dfd97
commit 73ae964918
1 changed files with 0 additions and 77 deletions

View File

@ -4676,80 +4676,3 @@ def test_scoped_fixture_teardown_order(pytester: Pytester) -> None:
) )
result = pytester.runpytest() result = pytester.runpytest()
assert result.ret == 0 assert result.ret == 0
def test_scope_fixture_caching_1(pytester: Pytester) -> None:
"""
Make sure setup and finalization is only run once when using fixture
multiple times. This might be a duplicate of another test."""
pytester.makepyfile(
"""
from __future__ import annotations
from typing import Generator
import pytest
executed: list[str] = []
@pytest.fixture(scope="class")
def fixture_1() -> Generator[None, None, None]:
executed.append("fix setup")
yield
executed.append("fix teardown")
class TestFixtureCaching:
def test_1(self, fixture_1: None) -> None:
assert executed == ["fix setup"]
def test_2(self, fixture_1: None) -> None:
assert executed == ["fix setup"]
def test_expected_setup_and_teardown() -> None:
assert executed == ["fix setup", "fix teardown"]
"""
)
result = pytester.runpytest()
assert result.ret == 0
def test_scope_fixture_caching_2(pytester: Pytester) -> None:
"""Make sure setup & finalization is only run once, with a cached exception."""
pytester.makepyfile(
"""
from __future__ import annotations
from typing import Generator
import pytest
executed_crash: list[str] = []
@pytest.fixture(scope="class")
def fixture_crash(request: pytest.FixtureRequest) -> None:
executed_crash.append("fix_crash setup")
def my_finalizer() -> None:
executed_crash.append("fix_crash teardown")
request.addfinalizer(my_finalizer)
raise Exception("foo")
class TestFixtureCachingException:
@pytest.mark.xfail
def test_crash_1(self, fixture_crash: None) -> None:
...
@pytest.mark.xfail
def test_crash_2(self, fixture_crash: None) -> None:
...
def test_crash_expected_setup_and_teardown() -> None:
assert executed_crash == ["fix_crash setup", "fix_crash teardown"]
"""
)
result = pytester.runpytest()
assert result.ret == 0