(argparse_app)
| 165 | |
| 166 | |
| 167 | def test_argparse_with_list(argparse_app) -> None: |
| 168 | out, _err = run_cmd(argparse_app, "speak -s hello world!") |
| 169 | assert out == ["HELLO WORLD!"] |
| 170 | |
| 171 | |
| 172 | def test_argparse_with_list_remove_quotes(argparse_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…