(self)
| 901 | self.assertEqual(result, [1, 2, 3]) |
| 902 | |
| 903 | def test_exit_raise(self): |
| 904 | with self.assertRaises(ZeroDivisionError): |
| 905 | with self.exit_stack() as stack: |
| 906 | stack.push(lambda *exc: False) |
| 907 | 1/0 |
| 908 | |
| 909 | def test_exit_suppress(self): |
| 910 | with self.exit_stack() as stack: |
nothing calls this directly
no test coverage detected