├── .coveragerc ├── .github └── workflows │ └── checks.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .readthedocs.yaml ├── .travis.yml ├── AUTHORS.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.rst └── make.bat ├── fauxfactory ├── __init__.py ├── constants.py ├── factories │ ├── __init__.py │ ├── booleans.py │ ├── choices.py │ ├── dates.py │ ├── internet.py │ ├── numbers.py │ ├── strings.py │ └── systems.py ├── facts.json └── helpers.py ├── pyproject.toml ├── requirements-dev.lock ├── requirements.lock ├── tests ├── __init__.py ├── test_booleans.py ├── test_check_validation.py ├── test_choices.py ├── test_dates.py ├── test_datetime.py ├── test_dir.py ├── test_domain.py ├── test_emails.py ├── test_getattr.py ├── test_html.py ├── test_ipaddress.py ├── test_lorem_ipsum.py ├── test_macs.py ├── test_netmasks.py ├── test_numbers.py ├── test_strings.py ├── test_system_facts.py ├── test_system_helpers.py ├── test_time.py ├── test_urls.py ├── test_utils.py └── test_uuids.py └── uv.lock /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.2 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/docs/make.bat -------------------------------------------------------------------------------- /fauxfactory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/__init__.py -------------------------------------------------------------------------------- /fauxfactory/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/constants.py -------------------------------------------------------------------------------- /fauxfactory/factories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/factories/__init__.py -------------------------------------------------------------------------------- /fauxfactory/factories/booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/factories/booleans.py -------------------------------------------------------------------------------- /fauxfactory/factories/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/factories/choices.py -------------------------------------------------------------------------------- /fauxfactory/factories/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/factories/dates.py -------------------------------------------------------------------------------- /fauxfactory/factories/internet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/factories/internet.py -------------------------------------------------------------------------------- /fauxfactory/factories/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/factories/numbers.py -------------------------------------------------------------------------------- /fauxfactory/factories/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/factories/strings.py -------------------------------------------------------------------------------- /fauxfactory/factories/systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/factories/systems.py -------------------------------------------------------------------------------- /fauxfactory/facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/facts.json -------------------------------------------------------------------------------- /fauxfactory/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/fauxfactory/helpers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/requirements-dev.lock -------------------------------------------------------------------------------- /requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/requirements.lock -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unittests for FauxFactory.""" 2 | -------------------------------------------------------------------------------- /tests/test_booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_booleans.py -------------------------------------------------------------------------------- /tests/test_check_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_check_validation.py -------------------------------------------------------------------------------- /tests/test_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_choices.py -------------------------------------------------------------------------------- /tests/test_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_dates.py -------------------------------------------------------------------------------- /tests/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_datetime.py -------------------------------------------------------------------------------- /tests/test_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_dir.py -------------------------------------------------------------------------------- /tests/test_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_domain.py -------------------------------------------------------------------------------- /tests/test_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_emails.py -------------------------------------------------------------------------------- /tests/test_getattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_getattr.py -------------------------------------------------------------------------------- /tests/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_html.py -------------------------------------------------------------------------------- /tests/test_ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_ipaddress.py -------------------------------------------------------------------------------- /tests/test_lorem_ipsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_lorem_ipsum.py -------------------------------------------------------------------------------- /tests/test_macs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_macs.py -------------------------------------------------------------------------------- /tests/test_netmasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_netmasks.py -------------------------------------------------------------------------------- /tests/test_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_numbers.py -------------------------------------------------------------------------------- /tests/test_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_strings.py -------------------------------------------------------------------------------- /tests/test_system_facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_system_facts.py -------------------------------------------------------------------------------- /tests/test_system_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_system_helpers.py -------------------------------------------------------------------------------- /tests/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_time.py -------------------------------------------------------------------------------- /tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_urls.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_uuids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/tests/test_uuids.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaciel/fauxfactory/HEAD/uv.lock --------------------------------------------------------------------------------