Set current input line of the test REPL.
(self, line)
| 367 | |
| 368 | class TestRepl(unittest.TestCase): |
| 369 | def set_input_line(self, line): |
| 370 | """Set current input line of the test REPL.""" |
| 371 | self.repl.current_line = line |
| 372 | self.repl.cursor_offset = len(line) |
| 373 | |
| 374 | def setUp(self): |
| 375 | self.repl = FakeRepl() |
no outgoing calls
no test coverage detected