(self)
| 194 | gc_collect() |
| 195 | |
| 196 | def test_move_cursor(self): |
| 197 | stdscr = self.stdscr |
| 198 | win = stdscr.subwin(10, 15, 2, 5) |
| 199 | stdscr.move(1, 2) |
| 200 | win.move(2, 4) |
| 201 | self.assertEqual(stdscr.getyx(), (1, 2)) |
| 202 | self.assertEqual(win.getyx(), (2, 4)) |
| 203 | |
| 204 | win.cursyncup() |
| 205 | self.assertEqual(stdscr.getyx(), (4, 9)) |
| 206 | |
| 207 | def test_refresh_control(self): |
| 208 | stdscr = self.stdscr |
nothing calls this directly
no test coverage detected