(self)
| 448 | normcase(p.stdout.read().decode())) |
| 449 | |
| 450 | def test_cwd(self): |
| 451 | # Check that cwd changes the cwd for the child process. |
| 452 | temp_dir = tempfile.gettempdir() |
| 453 | temp_dir = self._normalize_cwd(temp_dir) |
| 454 | self._assert_cwd(temp_dir, sys.executable, cwd=temp_dir) |
| 455 | |
| 456 | def test_cwd_with_bytes(self): |
| 457 | temp_dir = tempfile.gettempdir() |
nothing calls this directly
no test coverage detected