##// END OF EJS Templates
de-decorate help output tests
de-decorate help output tests

File last commit:

r12356:45c2f7b3
r12356:45c2f7b3
Show More
test_help.py
55 lines | 1.6 KiB | text/x-python | PythonLexer
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354 """Test help output of various IPython entry points"""
#-----------------------------------------------------------------------------
# Copyright (C) 2013 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
MinRK
de-decorate help output tests
r12356 import IPython.testing.tools as tt
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
#-----------------------------------------------------------------------------
# Tests
#-----------------------------------------------------------------------------
def test_ipython_help():
MinRK
de-decorate help output tests
r12356 tt.help_output_test()
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_ipython_help_all():
MinRK
de-decorate help output tests
r12356 tt.help_all_output_test()
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_profile_help():
MinRK
de-decorate help output tests
r12356 tt.help_output_test("profile")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_profile_help_all():
MinRK
de-decorate help output tests
r12356 tt.help_all_output_test("profile")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_profile_list_help():
MinRK
de-decorate help output tests
r12356 tt.help_output_test("profile list")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_profile_list_help_all():
MinRK
de-decorate help output tests
r12356 tt.help_all_output_test("profile list")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_profile_create_help():
MinRK
de-decorate help output tests
r12356 tt.help_output_test("profile create")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_profile_create_help_all():
MinRK
de-decorate help output tests
r12356 tt.help_all_output_test("profile create")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_locate_help():
MinRK
de-decorate help output tests
r12356 tt.help_output_test("locate")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_locate_help_all():
MinRK
de-decorate help output tests
r12356 tt.help_all_output_test("locate")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_locate_profile_help():
MinRK
de-decorate help output tests
r12356 tt.help_output_test("locate profile")
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
def test_locate_profile_all():
MinRK
de-decorate help output tests
r12356 tt.help_all_output_test("locate profile")