(self)
| 94 | assert not cfg.is_pretty |
| 95 | |
| 96 | def test_is_plain(self) -> None: |
| 97 | cfg = OutputConfig(mode=OutputMode.PLAIN) |
| 98 | assert cfg.is_plain |
| 99 | assert not cfg.is_json |
| 100 | assert not cfg.is_pretty |
| 101 | |
| 102 | def test_is_pretty(self) -> None: |
| 103 | cfg = OutputConfig(mode=OutputMode.PRETTY) |
nothing calls this directly
no test coverage detected