(argparse_app)
| 126 | |
| 127 | |
| 128 | def test_invalid_syntax(argparse_app) -> None: |
| 129 | _out, err = run_cmd(argparse_app, 'speak "') |
| 130 | assert err[0] == "Invalid syntax: No closing quotation" |
| 131 | |
| 132 | |
| 133 | def test_argparse_basic_command(argparse_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…