(self)
| 3394 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3395 | @requires_os_func('spawnle') |
| 3396 | def test_spawnle_noargs(self): |
| 3397 | program, __ = self.create_args() |
| 3398 | self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, program, {}) |
| 3399 | self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, program, '', {}) |
| 3400 | |
| 3401 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3402 | @requires_os_func('spawnv') |
nothing calls this directly
no test coverage detected