(base_app, capsys)
| 3196 | |
| 3197 | @with_ansi_style(ru.AllowStyle.ALWAYS) |
| 3198 | def test_perror_style(base_app, capsys) -> None: |
| 3199 | msg = "testing..." |
| 3200 | base_app.perror(msg) |
| 3201 | _out, err = capsys.readouterr() |
| 3202 | assert err == "\x1b[91mtesting...\x1b[0m\n" |
| 3203 | |
| 3204 | |
| 3205 | @with_ansi_style(ru.AllowStyle.ALWAYS) |
nothing calls this directly
no test coverage detected
searching dependent graphs…