(self)
| 54 | |
| 55 | class CurtsiesPaintingTest(ClearEnviron): |
| 56 | def setUp(self): |
| 57 | class TestRepl(BaseRepl): |
| 58 | def _request_refresh(inner_self): |
| 59 | pass |
| 60 | |
| 61 | self.repl = TestRepl(setup_config(), cast(CursorAwareWindow, None)) |
| 62 | self.repl.height, self.repl.width = (5, 10) |
| 63 | |
| 64 | @property |
| 65 | def locals(self): |
nothing calls this directly
no test coverage detected