##// END OF EJS Templates
Merge pull request #8298 from minrk/rm-console...
Merge pull request #8298 from minrk/rm-console remove jupyter_console

File last commit:

r21146:76a328da
r21228:cede205c merge
Show More
test_app.py
15 lines | 396 B | text/x-python | PythonLexer
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354 """Test QtConsoleApp"""
Min RK
use traitlets.tests.utils for help output tests...
r21146 # Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
import nose.tools as nt
Min RK
use traitlets.tests.utils for help output tests...
r21146 from traitlets.tests.utils import check_help_all_output
Thomas Kluyver
Skip qtconsole help test if no X11
r16742 from IPython.testing.decorators import skip_if_no_x11
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354
Thomas Kluyver
Skip qtconsole help test if no X11
r16742 @skip_if_no_x11
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354 def test_help_output():
Min RK
use traitlets.tests.utils for help output tests...
r21146 """jupyter qtconsole --help-all works"""
check_help_all_output('jupyter_qtconsole')
MinRK
test that `-h` and `--help-all` work for various IPython entry points...
r12354