(self, input)
| 493 | ) |
| 494 | |
| 495 | def do_input(self, input): |
| 496 | shell = self.shell |
| 497 | text = shell.text |
| 498 | for line_index, line in enumerate(input.split('\n')): |
| 499 | if line_index > 0: |
| 500 | text.event_generate('<<newline-and-indent>>') |
| 501 | text.insert('insert', line, 'stdin') |
| 502 | |
| 503 | def test_initial_state(self): |
| 504 | sidebar_lines = self.get_sidebar_lines() |
no test coverage detected