(self)
| 832 | self.assertEqual(result, [1, 2, 3]) |
| 833 | |
| 834 | def test_exit_raise(self): |
| 835 | with self.assertRaises(ZeroDivisionError): |
| 836 | with self.exit_stack() as stack: |
| 837 | stack.push(lambda *exc: False) |
| 838 | 1/0 |
| 839 | |
| 840 | def test_exit_suppress(self): |
| 841 | with self.exit_stack() as stack: |
nothing calls this directly
no test coverage detected