(base_app, capsys)
| 3204 | |
| 3205 | @with_ansi_style(ru.AllowStyle.ALWAYS) |
| 3206 | def test_perror_no_style(base_app, capsys) -> None: |
| 3207 | msg = "testing..." |
| 3208 | end = "\n" |
| 3209 | base_app.perror(msg, style=None) |
| 3210 | _out, err = capsys.readouterr() |
| 3211 | assert err == msg + end |
| 3212 | |
| 3213 | |
| 3214 | @with_ansi_style(ru.AllowStyle.ALWAYS) |
nothing calls this directly
no test coverage detected
searching dependent graphs…