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

Method test_spawnve_bytes

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

Source from the content-addressed store, hash-verified

3684
3685 @requires_os_func('spawnve')
3686 def test_spawnve_bytes(self):
3687 # Test bytes handling in parse_arglist and parse_envlist (#28114)
3688 program, args = self.create_args(with_env=True, use_bytes=True)
3689 exitcode = os.spawnve(os.P_WAIT, program, args, self.env)
3690 self.assertEqual(exitcode, self.exitcode)
3691
3692 @requires_os_func('spawnl')
3693 def test_spawnl_noargs(self):

Callers

nothing calls this directly

Calls 2

create_argsMethod · 0.95
assertEqualMethod · 0.45

Tested by

no test coverage detected