(self)
| 208 | self.assertEqual(stdout, b'') |
| 209 | |
| 210 | def test_shell(self): |
| 211 | proc = self.loop.run_until_complete( |
| 212 | asyncio.create_subprocess_shell('exit 7') |
| 213 | ) |
| 214 | exitcode = self.loop.run_until_complete(proc.wait()) |
| 215 | self.assertEqual(exitcode, 7) |
| 216 | |
| 217 | def test_start_new_session(self): |
| 218 | # start the new process in a new session |
nothing calls this directly
no test coverage detected