You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given the filesystem
a
a/file
a/b
fake_filesystem resolves "a/b/../non_existent_folder/../file" to file, but is
should raise OSError
STEPS TO REPRODUCE:
fake_filesystem_vs_real_test.py contains a test case for this
(testBadRelativePath) which is currently disabled. Enable it
EXPECTED RESULTS:
isfile(path) -> False
exists(path) -> False
stat(path).st_size -> raise OSError
OBSERVED RESULTS:
isfile(path) -> True
exists(path) -> True
stat(path).st_size -> 8 (size of final file)
Original issue reported on code.google.com by [email protected] on 24 Feb 2010 at 11:49
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 24 Feb 2010 at 11:49The text was updated successfully, but these errors were encountered: