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

Method test_spawnvp

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

Source from the content-addressed store, hash-verified

3666
3667 @requires_os_func('spawnvp')
3668 def test_spawnvp(self):
3669 program, args = self.create_args()
3670 exitcode = os.spawnvp(os.P_WAIT, program, args)
3671 self.assertEqual(exitcode, self.exitcode)
3672
3673 @requires_os_func('spawnvpe')
3674 def test_spawnvpe(self):

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertEqualMethod · 0.45

Tested by

no test coverage detected