(self)
| 399 | |
| 400 | @unittest.skipIf(mswindows, "executable argument replaces shell") |
| 401 | def test_executable_replaces_shell(self): |
| 402 | # Check that the executable argument replaces the default shell |
| 403 | # when shell=True. |
| 404 | self._assert_python([], executable=sys.executable, shell=True) |
| 405 | |
| 406 | @unittest.skipIf(mswindows, "executable argument replaces shell") |
| 407 | def test_bytes_executable_replaces_shell(self): |
nothing calls this directly
no test coverage detected