(self)
| 114 | ]) |
| 115 | |
| 116 | def test_exception(self): |
| 117 | def f(p): |
| 118 | 1/0 |
| 119 | f_ident = ident(f) |
| 120 | self.check_events(f, [(1, 'call', f_ident), |
| 121 | (1, 'return', f_ident), |
| 122 | ]) |
| 123 | |
| 124 | def test_caught_exception(self): |
| 125 | def f(p): |
nothing calls this directly
no test coverage detected