|
66 | 66 | from pyfakefs import fake_filesystem
|
67 | 67 | from pyfakefs import fake_filesystem_shutil
|
68 | 68 | from pyfakefs import mox3_stubout
|
69 |
| -from pyfakefs.extra_packages import pathlib, pathlib2, use_scandir |
| 69 | +from pyfakefs.extra_packages import pathlib, pathlib2, use_scandir, use_pathlib |
70 | 70 |
|
71 |
| -if pathlib: |
| 71 | +if use_pathlib: |
72 | 72 | from pyfakefs import fake_pathlib
|
73 | 73 |
|
74 | 74 | if use_scandir:
|
@@ -313,6 +313,8 @@ class Patcher(object):
|
313 | 313 | SKIPNAMES = {'os', 'path', 'io', 'genericpath', OS_MODULE, PATH_MODULE}
|
314 | 314 | if pathlib:
|
315 | 315 | SKIPNAMES.add('pathlib')
|
| 316 | + if pathlib2: |
| 317 | + SKIPNAMES.add('pathlib2') |
316 | 318 |
|
317 | 319 | def __init__(self, additional_skip_names=None,
|
318 | 320 | modules_to_reload=None, use_dynamic_patch=True,
|
@@ -356,12 +358,12 @@ def __init__(self, additional_skip_names=None,
|
356 | 358 | # be contained in - this allows for alternative modules like
|
357 | 359 | # `pathlib` and `pathlib2`
|
358 | 360 | self._class_modules = {}
|
359 |
| - if pathlib: |
| 361 | + if use_pathlib: |
| 362 | + mod_name = 'pathlib2' if pathlib2 is not None else 'pathlib' |
360 | 363 | self._fake_module_classes[
|
361 |
| - 'pathlib'] = fake_pathlib.FakePathlibModule |
| 364 | + mod_name] = fake_pathlib.FakePathlibModule |
362 | 365 | self._fake_module_classes[
|
363 |
| - 'Path'] = fake_pathlib.FakePathlibPathModule |
364 |
| - mod_name = 'pathlib2' if pathlib2 is not None else 'pathlib' |
| 366 | + 'Path'] = fake_pathlib.FakePathlibPathModule |
365 | 367 | self._class_modules['Path'] = [mod_name]
|
366 | 368 | if use_scandir:
|
367 | 369 | self._fake_module_classes[
|
|
0 commit comments