(self)
| 109 | ]) |
| 110 | |
| 111 | def test_exception(self): |
| 112 | def f(p): |
| 113 | 1/0 |
| 114 | f_ident = ident(f) |
| 115 | self.check_events(f, [(1, 'call', f_ident), |
| 116 | (1, 'return', f_ident), |
| 117 | ]) |
| 118 | |
| 119 | def test_caught_exception(self): |
| 120 | def f(p): |
nothing calls this directly
no test coverage detected