test_help.py 724 B

1234567891011121314151617181920212223242526272829
  1. """Test help output of various IPython entry points"""
  2. # Copyright (c) IPython Development Team.
  3. # Distributed under the terms of the Modified BSD License.
  4. import IPython.testing.tools as tt
  5. from IPython.testing.decorators import skip_without
  6. def test_ipython_help():
  7. tt.help_all_output_test()
  8. def test_profile_help():
  9. tt.help_all_output_test("profile")
  10. def test_profile_list_help():
  11. tt.help_all_output_test("profile list")
  12. def test_profile_create_help():
  13. tt.help_all_output_test("profile create")
  14. def test_locate_help():
  15. tt.help_all_output_test("locate")
  16. def test_locate_profile_help():
  17. tt.help_all_output_test("locate profile")
  18. def test_trust_help():
  19. tt.help_all_output_test("trust")