(self)
| 203 | ]) |
| 204 | |
| 205 | def test_raise(self): |
| 206 | def f(p): |
| 207 | raise Exception() |
| 208 | f_ident = ident(f) |
| 209 | self.check_events(f, [(1, 'call', f_ident), |
| 210 | (1, 'return', f_ident), |
| 211 | ]) |
| 212 | |
| 213 | def test_distant_exception(self): |
| 214 | def f(): |
nothing calls this directly
no test coverage detected