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

Method test_spawnlp

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

Source from the content-addressed store, hash-verified

3638
3639 @requires_os_func('spawnlp')
3640 def test_spawnlp(self):
3641 program, args = self.create_args()
3642 exitcode = os.spawnlp(os.P_WAIT, program, *args)
3643 self.assertEqual(exitcode, self.exitcode)
3644
3645 @requires_os_func('spawnlpe')
3646 def test_spawnlpe(self):

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertEqualMethod · 0.45

Tested by

no test coverage detected