(self, capsys: pytest.CaptureFixture[str])
| 171 | assert "\033" not in err |
| 172 | |
| 173 | def test_print_warning_plain(self, capsys: pytest.CaptureFixture[str]) -> None: |
| 174 | print_warning("caution") |
| 175 | out = capsys.readouterr().out |
| 176 | assert "[WARN] caution" in out |
| 177 | assert "\033" not in out |
| 178 | |
| 179 | def test_print_info_plain(self, capsys: pytest.CaptureFixture[str]) -> None: |
| 180 | print_info("note") |
nothing calls this directly
no test coverage detected