(self)
| 444 | self.assertIn(expected, output, expected) |
| 445 | |
| 446 | def test_quiet_mode(self): |
| 447 | p = spawn_repl("-q", "-m", "asyncio", custom=True) |
| 448 | output = kill_python(p) |
| 449 | self.assertEqual(p.returncode, 0) |
| 450 | self.assertEqual(output[:3], ">>>") |
| 451 | |
| 452 | |
| 453 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected