test that `ipython [subcommand] --help-all` works
(subcommand='')
| 460 | |
| 461 | |
| 462 | def help_all_output_test(subcommand=''): |
| 463 | """test that `ipython [subcommand] --help-all` works""" |
| 464 | cmd = get_ipython_cmd() + [subcommand, '--help-all'] |
| 465 | out, err, rc = get_output_error_code(cmd) |
| 466 | nt.assert_equal(rc, 0, err) |
| 467 | nt.assert_not_in("Traceback", err) |
| 468 | nt.assert_in("Options", out) |
| 469 | nt.assert_in("Class", out) |
| 470 | return out, err |
| 471 |
nothing calls this directly
no test coverage detected