(self)
| 354 | |
| 355 | @force_not_colorized |
| 356 | def test_main_exception(self): |
| 357 | with captured_stderr() as error_stringio: |
| 358 | s = self.run_main(switches=['1/0']) |
| 359 | self.assert_exc_string(error_stringio.getvalue(), 'ZeroDivisionError') |
| 360 | |
| 361 | @force_not_colorized |
| 362 | def test_main_exception_fixed_reps(self): |
nothing calls this directly
no test coverage detected