()
| 2112 | |
| 2113 | |
| 2114 | def test_read_raw_input_eof() -> None: |
| 2115 | app = cmd2.Cmd(stdin=io.StringIO("")) |
| 2116 | with pytest.raises(EOFError): |
| 2117 | app._read_raw_input("prompt> ", app.main_session) |
| 2118 | |
| 2119 | |
| 2120 | def test_resolve_completer_none(base_app: cmd2.Cmd) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…