Passing both processor and processors raises a TypeError.
(self)
| 1399 | ) == capsys.readouterr() |
| 1400 | |
| 1401 | def test_processor_and_processors(self): |
| 1402 | """ |
| 1403 | Passing both processor and processors raises a TypeError. |
| 1404 | """ |
| 1405 | with pytest.raises(TypeError, match="mutually exclusive"): |
| 1406 | ProcessorFormatter(processor=1, processors=[1]) |
| 1407 | |
| 1408 | def test_no_renderer(self): |
| 1409 | """ |
nothing calls this directly
no test coverage detected