(self)
| 88 | |
| 89 | class TestOutputConfig: |
| 90 | def test_is_json(self) -> None: |
| 91 | cfg = OutputConfig(mode=OutputMode.JSON) |
| 92 | assert cfg.is_json |
| 93 | assert not cfg.is_plain |
| 94 | assert not cfg.is_pretty |
| 95 | |
| 96 | def test_is_plain(self) -> None: |
| 97 | cfg = OutputConfig(mode=OutputMode.PLAIN) |
nothing calls this directly
no test coverage detected