We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If creating a symlink to an absolute path in pyfakefs under Windows (Python 3 only) resolving the path fails. For example:
def testSymlink(self): self.filesystem.is_windows_fs = True self.filesystem.create_file(r'C:\foo\bar') self.filesystem.create_symlink(r'C:\foo\link', r'C:\foo\bar') self.assertTrue(self.filesystem.exists(r'C:\foo\link'))
fails because the path is resolved to C:\foo\C:\foo\bar instead of C:\foo\bar.
C:\foo\C:\foo\bar
C:\foo\bar
The text was updated successfully, but these errors were encountered:
35b57ad
No branches or pull requests
If creating a symlink to an absolute path in pyfakefs under Windows (Python 3 only) resolving the path fails.
For example:
fails because the path is resolved to
C:\foo\C:\foo\bar
instead ofC:\foo\bar
.The text was updated successfully, but these errors were encountered: