aboutsummaryrefslogtreecommitdiff
path: root/pyfakefs/tests/example.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyfakefs/tests/example.py')
-rw-r--r--pyfakefs/tests/example.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/pyfakefs/tests/example.py b/pyfakefs/tests/example.py
index 09d7a3d..4ab9921 100644
--- a/pyfakefs/tests/example.py
+++ b/pyfakefs/tests/example.py
@@ -21,9 +21,9 @@ This demonstrates the usage of the
The modules related to file handling are bound to the respective fake modules:
>>> os #doctest: +ELLIPSIS
-<pyfakefs.fake_filesystem.FakeOsModule object...>
+<pyfakefs.fake_os.FakeOsModule object...>
>>> os.path #doctest: +ELLIPSIS
-<pyfakefs.fake_filesystem.FakePathModule object...>
+<pyfakefs.fake_path.FakePathModule object...>
>>> shutil #doctest: +ELLIPSIS
<pyfakefs.fake_filesystem_shutil.FakeShutilModule object...>
@@ -36,6 +36,7 @@ import shutil
try:
import scandir
+
has_scandir = True
except ImportError:
scandir = None
@@ -65,7 +66,7 @@ def create_file(path):
["This is test file '/test/file.txt'.\\n", \
'It was created using open().\\n']
"""
- with open(path, 'w') as f:
+ with open(path, "w") as f:
f.write("This is test file '{0}'.\n".format(path))
f.write("It was created using open().\n")
@@ -144,5 +145,5 @@ def scan_dir(path):
def file_contents(path):
"""Return the contents of the given path as byte array."""
- with open(path, 'rb') as f:
+ with open(path, "rb") as f:
return f.read()