(request)
| 104 | |
| 105 | @pytest.fixture(params=['python', 'json']) |
| 106 | def py_and_json(request) -> PyAndJson: |
| 107 | class ChosenPyAndJsonValidator(PyAndJsonValidator): |
| 108 | __init__ = functools.partialmethod(PyAndJsonValidator.__init__, validator_type=request.param) |
| 109 | |
| 110 | return ChosenPyAndJsonValidator |
| 111 | |
| 112 | |
| 113 | class StrictModeType: |
no outgoing calls
no test coverage detected