Passing neither processor nor processors raises a TypeError.
(self)
| 1406 | ProcessorFormatter(processor=1, processors=[1]) |
| 1407 | |
| 1408 | def test_no_renderer(self): |
| 1409 | """ |
| 1410 | Passing neither processor nor processors raises a TypeError. |
| 1411 | """ |
| 1412 | with pytest.raises(TypeError, match="must be passed"): |
| 1413 | ProcessorFormatter() |
| 1414 | |
| 1415 | def test_remove_processors_meta(self): |
| 1416 | """ |
nothing calls this directly
no test coverage detected