(self)
| 401 | @skip_unless_symlink |
| 402 | @requires_subprocess() |
| 403 | def test_symlink(self): # Issue 7880 |
| 404 | with PythonSymlink() as py: |
| 405 | cmd = "-c", "import sysconfig; print(sysconfig.get_platform())" |
| 406 | self.assertEqual(py.call_real(*cmd), py.call_link(*cmd)) |
| 407 | |
| 408 | def test_user_similar(self): |
| 409 | # Issue #8759: make sure the posix scheme for the users |
nothing calls this directly
no test coverage detected