(argparse_app)
| 131 | |
| 132 | |
| 133 | def test_argparse_basic_command(argparse_app) -> None: |
| 134 | out, _err = run_cmd(argparse_app, "say hello") |
| 135 | assert out == ["hello"] |
| 136 | |
| 137 | |
| 138 | def test_argparse_remove_quotes(argparse_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…