(argparse_app)
| 246 | |
| 247 | |
| 248 | def test_invalid_parser_builder(argparse_app): |
| 249 | parser_builder = None |
| 250 | with pytest.raises(TypeError, match="Invalid type for parser_builder"): |
| 251 | argparse_app._build_parser(argparse_app, parser_builder) |
| 252 | |
| 253 | |
| 254 | def test_invalid_parser_return_type(argparse_app): |
nothing calls this directly
no test coverage detected
searching dependent graphs…