MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_spawnle_noargs

Method test_spawnle_noargs

Lib/test/test_os.py:3699–3702  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3697
3698 @requires_os_func('spawnle')
3699 def test_spawnle_noargs(self):
3700 program, __ = self.create_args()
3701 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, program, {})
3702 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, program, '', {})
3703
3704 @requires_os_func('spawnv')
3705 def test_spawnv_noargs(self):

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertRaisesMethod · 0.45

Tested by

no test coverage detected