(self)
| 100 | assert not cfg.is_pretty |
| 101 | |
| 102 | def test_is_pretty(self) -> None: |
| 103 | cfg = OutputConfig(mode=OutputMode.PRETTY) |
| 104 | assert cfg.is_pretty |
| 105 | assert not cfg.is_json |
| 106 | assert not cfg.is_plain |
| 107 | |
| 108 | |
| 109 | # ============================================================================= |
nothing calls this directly
no test coverage detected