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

Method test_spawnvpe

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

Source from the content-addressed store, hash-verified

3672
3673 @requires_os_func('spawnvpe')
3674 def test_spawnvpe(self):
3675 program, args = self.create_args(with_env=True)
3676 exitcode = os.spawnvpe(os.P_WAIT, program, args, self.env)
3677 self.assertEqual(exitcode, self.exitcode)
3678
3679 @requires_os_func('spawnv')
3680 def test_nowait(self):

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertEqualMethod · 0.45

Tested by

no test coverage detected