()
| 60 | |
| 61 | |
| 62 | def test_log_output_ignores_missing_logfile() -> None: |
| 63 | cli = make_bare_mycli() |
| 64 | cli.logfile = None |
| 65 | |
| 66 | OutputMixin.log_output(cli, 'nothing to write') |
| 67 | |
| 68 | |
| 69 | def test_echo_logs_and_prints(monkeypatch: pytest.MonkeyPatch) -> None: |
nothing calls this directly
no test coverage detected