()
| 654 | |
| 655 | |
| 656 | def test_empty_statement_raises_exception() -> None: |
| 657 | app = cmd2.Cmd() |
| 658 | with pytest.raises(exceptions.EmptyStatement): |
| 659 | app._complete_statement("") |
| 660 | |
| 661 | with pytest.raises(exceptions.EmptyStatement): |
| 662 | app._complete_statement(" ") |
| 663 | |
| 664 | |
| 665 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…