(self)
| 85 | ip.magic('paste '+flags) |
| 86 | |
| 87 | def setUp(self): |
| 88 | # Inject fake clipboard hook but save original so we can restore it later |
| 89 | self.original_clip = ip.hooks.clipboard_get |
| 90 | |
| 91 | def tearDown(self): |
| 92 | # Restore original hook |
nothing calls this directly
no outgoing calls
no test coverage detected