(x, y)
| 1671 | |
| 1672 | def test_heading_callback(self): |
| 1673 | def simulate_heading_click(x, y): |
| 1674 | if tk_version >= (8, 6): |
| 1675 | self.assertEqual(self.tv.identify_column(x), '#0') |
| 1676 | self.assertEqual(self.tv.identify_region(x, y), 'heading') |
| 1677 | simulate_mouse_click(self.tv, x, y) |
| 1678 | self.tv.update() |
| 1679 | |
| 1680 | success = [] # no success for now |
| 1681 |
nothing calls this directly
no test coverage detected