(self)
| 196 | del self.color |
| 197 | |
| 198 | def test_setdelegate(self): |
| 199 | # Called in setUp when filter is attached to percolator. |
| 200 | color = self.color |
| 201 | self.assertIsInstance(color.delegate, colorizer.Delegator) |
| 202 | # It is too late to mock notify_range, so test side effect. |
| 203 | self.assertEqual(self.root.tk.call( |
| 204 | 'after', 'info', color.after_id)[1], 'timer') |
| 205 | |
| 206 | def test_LoadTagDefs(self): |
| 207 | highlight = partial(config.idleConf.GetHighlight, theme='IDLE Classic') |
nothing calls this directly
no test coverage detected