(self)
| 101 | return HookWatcher() |
| 102 | |
| 103 | def test_simple(self): |
| 104 | def f(p): |
| 105 | pass |
| 106 | f_ident = ident(f) |
| 107 | self.check_events(f, [(1, 'call', f_ident), |
| 108 | (1, 'return', f_ident), |
| 109 | ]) |
| 110 | |
| 111 | def test_exception(self): |
| 112 | def f(p): |
nothing calls this directly
no test coverage detected