(**kwds)
| 2262 | @support.requires_subprocess() |
| 2263 | def test_subprocess_exec_invalid_args(self): |
| 2264 | async def connect(**kwds): |
| 2265 | await self.loop.subprocess_exec( |
| 2266 | asyncio.SubprocessProtocol, |
| 2267 | 'pwd', **kwds) |
| 2268 | |
| 2269 | with self.assertRaises(ValueError): |
| 2270 | self.loop.run_until_complete(connect(universal_newlines=True)) |
nothing calls this directly
no test coverage detected