├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── VERSION ├── setup.py ├── testdata ├── __init__.py ├── base.py ├── childrentree.py ├── dictionary.py ├── errors.py ├── extra │ ├── __init__.py │ └── mongodb.py ├── factories │ ├── __init__.py │ ├── datetimes.py │ ├── fake.py │ ├── generic.py │ ├── numbers.py │ ├── sequences.py │ ├── statistical.py │ └── strings.py └── metaclasses.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.5 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/setup.py -------------------------------------------------------------------------------- /testdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/__init__.py -------------------------------------------------------------------------------- /testdata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/base.py -------------------------------------------------------------------------------- /testdata/childrentree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/childrentree.py -------------------------------------------------------------------------------- /testdata/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/dictionary.py -------------------------------------------------------------------------------- /testdata/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/errors.py -------------------------------------------------------------------------------- /testdata/extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/extra/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/extra/mongodb.py -------------------------------------------------------------------------------- /testdata/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/factories/datetimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/factories/datetimes.py -------------------------------------------------------------------------------- /testdata/factories/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/factories/fake.py -------------------------------------------------------------------------------- /testdata/factories/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/factories/generic.py -------------------------------------------------------------------------------- /testdata/factories/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/factories/numbers.py -------------------------------------------------------------------------------- /testdata/factories/sequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/factories/sequences.py -------------------------------------------------------------------------------- /testdata/factories/statistical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/factories/statistical.py -------------------------------------------------------------------------------- /testdata/factories/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/factories/strings.py -------------------------------------------------------------------------------- /testdata/metaclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/testdata/metaclasses.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arieb/python-testdata/HEAD/tests.py --------------------------------------------------------------------------------