diff options
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 2e94c19a..a7148621 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -788,6 +788,10 @@ class ProcessTest(CoverageTest): out = self.run_command("python -m coverage") self.assertIn("Use 'coverage help' for help", out) + +class ExcepthookTest(CoverageTest): + """Tests of sys.excepthook support.""" + def test_excepthook(self): self.make_file("test_excepthook.py", """\ import sys @@ -848,7 +852,6 @@ class ProcessTest(CoverageTest): self.assertEqual(cov_out, py_out) - class AliasedCommandTest(CoverageTest): """Tests of the version-specific command aliases.""" |