├── .git-blame-ignore-revs ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .testr.conf ├── AUTHORS ├── Apache-2.0 ├── BSD ├── COPYING ├── GOALS ├── HACKING ├── Makefile ├── NEWS ├── README.rst ├── fixtures ├── __init__.py ├── _fixtures │ ├── __init__.py │ ├── environ.py │ ├── logger.py │ ├── mockpatch.py │ ├── monkeypatch.py │ ├── packagepath.py │ ├── popen.py │ ├── pythonpackage.py │ ├── pythonpath.py │ ├── streams.py │ ├── tempdir.py │ ├── temphomedir.py │ ├── timeout.py │ └── warnings.py ├── callmany.py ├── fixture.py ├── py.typed ├── testcase.py └── tests │ ├── __init__.py │ ├── _fixtures │ ├── __init__.py │ ├── test_environ.py │ ├── test_logger.py │ ├── test_mockpatch.py │ ├── test_monkeypatch.py │ ├── test_packagepath.py │ ├── test_popen.py │ ├── test_pythonpackage.py │ ├── test_pythonpath.py │ ├── test_streams.py │ ├── test_tempdir.py │ ├── test_temphomedir.py │ ├── test_timeout.py │ └── test_warnings.py │ ├── helpers.py │ ├── test_callmany.py │ ├── test_fixture.py │ └── test_testcase.py ├── pyproject.toml └── tox.ini /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | 9402d8dcdf7b0a1a1e004f56b7bcfc0070fa9f60 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/.gitignore -------------------------------------------------------------------------------- /.testr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/.testr.conf -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/AUTHORS -------------------------------------------------------------------------------- /Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/Apache-2.0 -------------------------------------------------------------------------------- /BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/BSD -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/COPYING -------------------------------------------------------------------------------- /GOALS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/GOALS -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/HACKING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/NEWS -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/README.rst -------------------------------------------------------------------------------- /fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/__init__.py -------------------------------------------------------------------------------- /fixtures/_fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/__init__.py -------------------------------------------------------------------------------- /fixtures/_fixtures/environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/environ.py -------------------------------------------------------------------------------- /fixtures/_fixtures/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/logger.py -------------------------------------------------------------------------------- /fixtures/_fixtures/mockpatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/mockpatch.py -------------------------------------------------------------------------------- /fixtures/_fixtures/monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/monkeypatch.py -------------------------------------------------------------------------------- /fixtures/_fixtures/packagepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/packagepath.py -------------------------------------------------------------------------------- /fixtures/_fixtures/popen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/popen.py -------------------------------------------------------------------------------- /fixtures/_fixtures/pythonpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/pythonpackage.py -------------------------------------------------------------------------------- /fixtures/_fixtures/pythonpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/pythonpath.py -------------------------------------------------------------------------------- /fixtures/_fixtures/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/streams.py -------------------------------------------------------------------------------- /fixtures/_fixtures/tempdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/tempdir.py -------------------------------------------------------------------------------- /fixtures/_fixtures/temphomedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/temphomedir.py -------------------------------------------------------------------------------- /fixtures/_fixtures/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/timeout.py -------------------------------------------------------------------------------- /fixtures/_fixtures/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/_fixtures/warnings.py -------------------------------------------------------------------------------- /fixtures/callmany.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/callmany.py -------------------------------------------------------------------------------- /fixtures/fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/fixture.py -------------------------------------------------------------------------------- /fixtures/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/testcase.py -------------------------------------------------------------------------------- /fixtures/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/__init__.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/__init__.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_environ.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_logger.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_mockpatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_mockpatch.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_monkeypatch.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_packagepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_packagepath.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_popen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_popen.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_pythonpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_pythonpackage.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_pythonpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_pythonpath.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_streams.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_tempdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_tempdir.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_temphomedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_temphomedir.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_timeout.py -------------------------------------------------------------------------------- /fixtures/tests/_fixtures/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/_fixtures/test_warnings.py -------------------------------------------------------------------------------- /fixtures/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/helpers.py -------------------------------------------------------------------------------- /fixtures/tests/test_callmany.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/test_callmany.py -------------------------------------------------------------------------------- /fixtures/tests/test_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/test_fixture.py -------------------------------------------------------------------------------- /fixtures/tests/test_testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/fixtures/tests/test_testcase.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testing-cabal/fixtures/HEAD/tox.ini --------------------------------------------------------------------------------