MCPcopy Index your code
hub / github.com/ipython/ipython / help_all_output_test

Function help_all_output_test

IPython/testing/tools.py:427–435  ·  view source on GitHub ↗

test that `ipython [subcommand] --help-all` works

(subcommand='')

Source from the content-addressed store, hash-verified

425
426
427def help_all_output_test(subcommand=''):
428 """test that `ipython [subcommand] --help-all` works"""
429 cmd = get_ipython_cmd() + [subcommand, '--help-all']
430 out, err, rc = get_output_error_code(cmd)
431 assert rc == 0, err
432 assert "Traceback" not in err
433 assert "Options" in out
434 assert "Class" in out
435 return out, err
436

Callers

nothing calls this directly

Calls 2

get_output_error_codeFunction · 0.90
get_ipython_cmdFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…