(self)
| 106 | return HookWatcher() |
| 107 | |
| 108 | def test_simple(self): |
| 109 | def f(p): |
| 110 | pass |
| 111 | f_ident = ident(f) |
| 112 | self.check_events(f, [(1, 'call', f_ident), |
| 113 | (1, 'return', f_ident), |
| 114 | ]) |
| 115 | |
| 116 | def test_exception(self): |
| 117 | def f(p): |
nothing calls this directly
no test coverage detected