Set current input line of the test REPL.
(self, line)
| 296 | self.repl = FakeRepl() |
| 297 | |
| 298 | def set_input_line(self, line): |
| 299 | """Set current input line of the test REPL.""" |
| 300 | self.repl.current_line = line |
| 301 | self.repl.cursor_offset = len(line) |
| 302 | |
| 303 | def assert_get_source_error_for_current_function(self, func, msg): |
| 304 | self.repl.current_func = func |
no outgoing calls
no test coverage detected