Set current input line of the test REPL.
(self, line)
| 172 | self.repl.push("\n", False) |
| 173 | |
| 174 | def set_input_line(self, line): |
| 175 | """Set current input line of the test REPL.""" |
| 176 | self.repl.current_line = line |
| 177 | self.repl.cursor_offset = len(line) |
| 178 | |
| 179 | def test_func_name(self): |
| 180 | for line, expected_name in [ |
no outgoing calls
no test coverage detected