(self)
| 3387 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3388 | @requires_os_func('spawnl') |
| 3389 | def test_spawnl_noargs(self): |
| 3390 | program, __ = self.create_args() |
| 3391 | self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, program) |
| 3392 | self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, program, '') |
| 3393 | |
| 3394 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3395 | @requires_os_func('spawnle') |
nothing calls this directly
no test coverage detected