(self)
| 298 | self.assertEqual(root.after_info(), ()) |
| 299 | |
| 300 | def test_clipboard(self): |
| 301 | root = self.root |
| 302 | root.clipboard_clear() |
| 303 | root.clipboard_append('Ùñî') |
| 304 | self.assertEqual(root.clipboard_get(), 'Ùñî') |
| 305 | root.clipboard_append('çōđě') |
| 306 | self.assertEqual(root.clipboard_get(), 'Ùñîçōđě') |
| 307 | root.clipboard_clear() |
| 308 | with self.assertRaises(tkinter.TclError): |
| 309 | root.clipboard_get() |
| 310 | |
| 311 | def test_clipboard_astral(self): |
| 312 | root = self.root |
nothing calls this directly
no test coverage detected