(self)
| 3691 | |
| 3692 | @requires_os_func('spawnl') |
| 3693 | def test_spawnl_noargs(self): |
| 3694 | program, __ = self.create_args() |
| 3695 | self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, program) |
| 3696 | self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, program, '') |
| 3697 | |
| 3698 | @requires_os_func('spawnle') |
| 3699 | def test_spawnle_noargs(self): |
nothing calls this directly
no test coverage detected