(self)
| 309 | root.clipboard_get() |
| 310 | |
| 311 | def test_clipboard_astral(self): |
| 312 | root = self.root |
| 313 | root.clipboard_clear() |
| 314 | root.clipboard_append('𝔘𝔫𝔦') |
| 315 | self.assertEqual(root.clipboard_get(), '𝔘𝔫𝔦') |
| 316 | root.clipboard_append('𝔠𝔬𝔡𝔢') |
| 317 | self.assertEqual(root.clipboard_get(), '𝔘𝔫𝔦𝔠𝔬𝔡𝔢') |
| 318 | root.clipboard_clear() |
| 319 | with self.assertRaises(tkinter.TclError): |
| 320 | root.clipboard_get() |
| 321 | |
| 322 | def test_winfo_rgb(self): |
| 323 |
nothing calls this directly
no test coverage detected