/opt/cloudlinux/venv/lib/python3.11/site-packages/pyfakefs/pytest_tests
NameSizeModeActions
data/-0755rm
hook_test/-0755rm
ns_package/-0755rm
__pycache__/-0755rm
conftest.py13330644editdlrm
example.py6520644editdlrm
fake_fcntl_test.py8550644editdlrm
io.py3410644editdlrm
lib_using_pathlib.py750644editdlrm
local_import.py1320644editdlrm
pytest_check_failed_plugin_test.py6590644editdlrm
pytest_doctest_test.py13880644editdlrm
pytest_fixture_param_test.py18910644editdlrm
pytest_fixture_test.py25430644editdlrm
pytest_module_fixture_test.py10440644editdlrm
pytest_plugin_failing_helper.py1280644editdlrm
pytest_plugin_test.py25560644editdlrm
pytest_reload_pandas_test.py8280644editdlrm
test_fs_with_monkeypatch.py3480644editdlrm
test_patch_on_setup.py9490644editdlrm
test_reload_local_import.py7710644editdlrm
unhashable.py3900644editdlrm
__init__.py00644editdlrm
Edit: /opt/cloudlinux/venv/lib/python3.11/site-packages/pyfakefs/pytest_tests/test_fs_with_monkeypatch.py (348B)
from pyfakefs.fake_filesystem import FakeFileOpen def test_monkeypatch_with_fs(fs, monkeypatch): """Regression test for issue 1200""" fake_open = FakeFileOpen(fs) monkeypatch.setattr("builtins.open", fake_open, raising=False) def test_open(): """Tests if open is poisoned by the above test""" assert "built-in" in str(open)