Test with_argparser wrapper passing through kwargs to command function
(argparse_app, capsys)
| 195 | |
| 196 | |
| 197 | def test_argparser_and_unknown_args_kwargs(argparse_app, capsys) -> None: |
| 198 | """Test with_argparser wrapper passing through kwargs to command function""" |
| 199 | argparse_app.do_speak("", keyword_arg="foo") |
| 200 | out, _err = capsys.readouterr() |
| 201 | assert out == "foo\n" |
| 202 | |
| 203 | |
| 204 | def test_argparse_quoted_arguments_multiple(argparse_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…