(self, source)
| 42 | self.repl = create_repl() |
| 43 | |
| 44 | def cfwp(self, source): |
| 45 | return interpreter.code_finished_will_parse( |
| 46 | source, self.repl.interp.compile |
| 47 | ) |
| 48 | |
| 49 | def test_code_finished_will_parse(self): |
| 50 | self.repl.buffer = ["1 + 1"] |
no outgoing calls
no test coverage detected