(manager)
| 167 | |
| 168 | @gb_config |
| 169 | def test_textbox_errors(manager): |
| 170 | manager.c.widget["text"].update(None) |
| 171 | manager.c.widget["text"].update("".join(chr(i) for i in range(255))) |
| 172 | manager.c.widget["text"].update("V\xe2r\xe2na\xe7\xee") |
| 173 | manager.c.widget["text"].update("\ua000") |
| 174 | |
| 175 | |
| 176 | @gb_config |