Test that decorators applied to fixture are left working (#3774)
(pytester: Pytester)
| 1245 | |
| 1246 | |
| 1247 | def test_fixture_mock_integration(pytester: Pytester) -> None: |
| 1248 | """Test that decorators applied to fixture are left working (#3774)""" |
| 1249 | p = pytester.copy_example("acceptance/fixture_mock_integration.py") |
| 1250 | result = pytester.runpytest(p) |
| 1251 | result.stdout.fnmatch_lines(["*1 passed*"]) |
| 1252 | |
| 1253 | |
| 1254 | def test_usage_error_code(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected