(self)
| 400 | self.assertEqual(d.paint_theme_sample.called, 1) |
| 401 | |
| 402 | def test_color(self): |
| 403 | d = self.page |
| 404 | d.on_new_color_set = Func() |
| 405 | # self.color is only set in get_color through colorchooser. |
| 406 | d.color.set('green') |
| 407 | self.assertEqual(d.on_new_color_set.called, 1) |
| 408 | del d.on_new_color_set |
| 409 | |
| 410 | def test_highlight_target_list_mouse(self): |
| 411 | # Set highlight_target through targetlist. |
nothing calls this directly
no test coverage detected