Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > > site-packages > pyfakefs
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
pytest_tests | Directory | - | - | |
tests | Directory | - | - | |
__init__.py | File | 56 bytes | April 17 2025 13:10:58. | |
_version.py | File | 22 bytes | April 17 2025 13:10:58. | |
extra_packages.py | File | 1149 bytes | April 17 2025 13:10:58. | |
fake_file.py | File | 45924 bytes | April 17 2025 13:10:58. | |
fake_filesystem.py | File | 116686 bytes | April 17 2025 13:10:58. | |
fake_filesystem_shutil.py | File | 3755 bytes | April 17 2025 13:10:58. | |
fake_filesystem_unittest.py | File | 42687 bytes | April 17 2025 13:10:58. | |
fake_io.py | File | 6093 bytes | April 17 2025 13:10:58. | |
fake_open.py | File | 13384 bytes | April 17 2025 13:10:58. | |
fake_os.py | File | 50798 bytes | April 17 2025 13:10:58. | |
fake_path.py | File | 17909 bytes | April 17 2025 13:10:58. | |
fake_pathlib.py | File | 34881 bytes | April 17 2025 13:10:58. | |
fake_scandir.py | File | 11323 bytes | April 17 2025 13:10:58. | |
helpers.py | File | 13177 bytes | April 17 2025 13:10:58. | |
mox3_stubout.py | File | 5915 bytes | April 17 2025 13:10:58. | |
patched_packages.py | File | 4405 bytes | April 17 2025 13:10:58. | |
py.typed | File | 68 bytes | April 17 2025 13:10:58. | |
pytest_plugin.py | File | 1739 bytes | April 17 2025 13:10:58. |
"""A pytest plugin for using pyfakefs as a fixture When pyfakefs is installed, the "fs" fixture becomes available. :Usage: def my_fakefs_test(fs): fs.create_file('/var/data/xx1.txt') assert os.path.exists('/var/data/xx1.txt') """ import py import pytest from _pytest import capture from pyfakefs.fake_filesystem_unittest import Patcher try: from _pytest import pathlib except ImportError: pathlib = None Patcher.SKIPMODULES.add(py) Patcher.SKIPMODULES.add(pytest) Patcher.SKIPMODULES.add(capture) if pathlib is not None: Patcher.SKIPMODULES.add(pathlib) @pytest.fixture def fs(request): """Fake filesystem.""" if hasattr(request, "param"): # pass optional parameters via @pytest.mark.parametrize patcher = Patcher(*request.param) else: patcher = Patcher() patcher.setUp() yield patcher.fs patcher.tearDown() @pytest.fixture(scope="class") def fs_class(request): """Class-scoped fake filesystem fixture.""" if hasattr(request, "param"): patcher = Patcher(*request.param) else: patcher = Patcher() patcher.setUp() yield patcher.fs patcher.tearDown() @pytest.fixture(scope="module") def fs_module(request): """Module-scoped fake filesystem fixture.""" if hasattr(request, "param"): patcher = Patcher(*request.param) else: patcher = Patcher() patcher.setUp() yield patcher.fs patcher.tearDown() @pytest.fixture(scope="session") def fs_session(request): """Session-scoped fake filesystem fixture.""" if hasattr(request, "param"): patcher = Patcher(*request.param) else: patcher = Patcher() patcher.setUp() yield patcher.fs patcher.tearDown()
SILENT KILLER Tool