##// END OF EJS Templates
only test `--help-all`...
MinRK -
Show More
@@ -20,10 +20,6 b' import IPython.testing.tools as tt'
20 20 #-----------------------------------------------------------------------------
21 21
22 22 def test_help_output():
23 """ipython notebook -h works"""
24 tt.help_output_test('notebook')
25
26 def test_help_all_output():
27 23 """ipython notebook --help-all works"""
28 24 tt.help_all_output_test('notebook')
29 25
@@ -23,7 +23,7 b' import nose.tools as nt'
23 23
24 24 from IPython.kernel import KernelManager
25 25 from IPython.kernel.tests.test_message_spec import execute, flush_channels
26 from IPython.testing import decorators as dec
26 from IPython.testing import decorators as dec, tools as tt
27 27 from IPython.utils import path, py3compat
28 28
29 29 #-------------------------------------------------------------------------------
@@ -206,7 +206,6 b' def test_subprocess_error():'
206 206 _check_mp_mode(kc, expected=False)
207 207 _check_mp_mode(kc, expected=False, stream="stderr")
208 208
209
210 209 # raw_input tests
211 210
212 211 def test_raw_input():
@@ -250,3 +249,8 b' def test_eval_input():'
250 249 stdout, stderr = assemble_output(iopub)
251 250 nt.assert_equal(stdout, "2\n")
252 251
252
253 def test_help_output():
254 """ipython kernel --help-all works"""
255 tt.help_all_output_test('kernel')
256
@@ -40,10 +40,6 b' class TestNbConvertApp(TestsBase):'
40 40 self.assertIn("see '--help-all'", out)
41 41
42 42 def test_help_output(self):
43 """ipython nbconvert -h works"""
44 tt.help_output_test('nbconvert')
45
46 def test_help_all_output(self):
47 43 """ipython nbconvert --help-all works"""
48 44 tt.help_all_output_test('nbconvert')
49 45
@@ -20,10 +20,6 b' import IPython.testing.tools as tt'
20 20 #-----------------------------------------------------------------------------
21 21
22 22 def test_help_output():
23 """ipython qtconsole -h works"""
24 tt.help_output_test('qtconsole')
25
26 def test_help_all_output():
27 23 """ipython qtconsole --help-all works"""
28 24 tt.help_all_output_test('qtconsole')
29 25
@@ -58,10 +58,6 b' def test_console_starts():'
58 58 p.terminate()
59 59
60 60 def test_help_output():
61 """ipython console -h works"""
62 tt.help_output_test('console')
63
64 def test_help_all_output():
65 61 """ipython console --help-all works"""
66 62 tt.help_all_output_test('console')
67 63
@@ -19,37 +19,19 b' import IPython.testing.tools as tt'
19 19
20 20
21 21 def test_ipython_help():
22 tt.help_output_test()
23
24 def test_ipython_help_all():
25 22 tt.help_all_output_test()
26 23
27 24 def test_profile_help():
28 tt.help_output_test("profile")
29
30 def test_profile_help_all():
31 25 tt.help_all_output_test("profile")
32 26
33 27 def test_profile_list_help():
34 tt.help_output_test("profile list")
35
36 def test_profile_list_help_all():
37 28 tt.help_all_output_test("profile list")
38 29
39 30 def test_profile_create_help():
40 tt.help_output_test("profile create")
41
42 def test_profile_create_help_all():
43 31 tt.help_all_output_test("profile create")
44 32
45 33 def test_locate_help():
46 tt.help_output_test("locate")
47
48 def test_locate_help_all():
49 34 tt.help_all_output_test("locate")
50 35
51 36 def test_locate_profile_help():
52 tt.help_output_test("locate profile")
53
54 def test_locate_profile_all():
55 37 tt.help_all_output_test("locate profile")
General Comments 0
You need to be logged in to leave comments. Login now