(self)
| 89 | self.original_clip = ip.hooks.clipboard_get |
| 90 | |
| 91 | def tearDown(self): |
| 92 | # Restore original hook |
| 93 | ip.hooks.clipboard_get = self.original_clip |
| 94 | |
| 95 | def test_paste(self): |
| 96 | ip.user_ns.pop('x', None) |
nothing calls this directly
no outgoing calls
no test coverage detected