Test that decorators applied to fixture are left working (#3774)
(pytester: Pytester)
| 1139 | |
| 1140 | |
| 1141 | def test_fixture_mock_integration(pytester: Pytester) -> None: |
| 1142 | """Test that decorators applied to fixture are left working (#3774)""" |
| 1143 | p = pytester.copy_example("acceptance/fixture_mock_integration.py") |
| 1144 | result = pytester.runpytest(p) |
| 1145 | result.stdout.fnmatch_lines(["*1 passed*"]) |
| 1146 | |
| 1147 | |
| 1148 | def test_usage_error_code(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected