(self)
| 281 | self.assertEqual(self.repl.current_stdouterr_line, "") |
| 282 | |
| 283 | def test_no_trailing_newline(self): |
| 284 | self.repl.send_to_stdouterr("foo") |
| 285 | self.assertEqual(self.repl.current_stdouterr_line, "foo") |
| 286 | |
| 287 | def test_print_without_newline_then_print_with_leading_newline(self): |
| 288 | self.repl.send_to_stdouterr("foo") |
nothing calls this directly
no test coverage detected