(self, c, factory)
| 850 | 10, 0, 11.2, 13.6, -10, '0.1i') |
| 851 | |
| 852 | def _test_option_joinstyle(self, c, factory): |
| 853 | for joinstyle in 'bevel', 'miter', 'round': |
| 854 | i = factory(joinstyle=joinstyle) |
| 855 | self.assertEqual(c.itemcget(i, 'joinstyle'), joinstyle) |
| 856 | self.assertRaises(TclError, factory, joinstyle='spam') |
| 857 | |
| 858 | def _test_option_smooth(self, c, factory): |
| 859 | for smooth in 1, True, '1', 'true', 'yes', 'on': |
no test coverage detected