├── .gitignore ├── .idea └── dictionaries │ └── prophet.xml ├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_any ├── __init__.py ├── contrib │ ├── __init__.py │ ├── auth.py │ └── default.py ├── forms.py ├── functions.py ├── models.py ├── test.py └── xunit.py ├── docs ├── Makefile ├── changelog.rst ├── conf.py ├── contrib.rst ├── debugging.rst ├── forms.rst ├── index.rst ├── installation.rst ├── usage.rst └── xunit.rst ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── manage.py ├── media │ └── sample_subdir │ │ └── sample_file.txt ├── requirements.pip ├── testapp │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── tests │ │ ├── __init__.py │ │ ├── test_client.py │ │ ├── test_contrib_any_user.py │ │ ├── test_contrib_defaults.py │ │ ├── test_custom_seed.py │ │ ├── test_field_attr_choices.py │ │ ├── test_model_creation_constraint.py │ │ ├── test_model_creation_simple.py │ │ ├── test_model_customfield.py │ │ ├── test_model_field_content_object.py │ │ ├── test_model_field_validatiors.py │ │ ├── test_model_filefield.py │ │ ├── test_model_foreign_key.py │ │ ├── test_model_oneto_one.py │ │ ├── test_model_qobjects_spec.py │ │ └── test_model_redefine_creation.py └── testproject │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/dictionaries/prophet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/.idea/dictionaries/prophet.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/README.rst -------------------------------------------------------------------------------- /django_any/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/__init__.py -------------------------------------------------------------------------------- /django_any/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/contrib/__init__.py -------------------------------------------------------------------------------- /django_any/contrib/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/contrib/auth.py -------------------------------------------------------------------------------- /django_any/contrib/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/contrib/default.py -------------------------------------------------------------------------------- /django_any/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/forms.py -------------------------------------------------------------------------------- /django_any/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/functions.py -------------------------------------------------------------------------------- /django_any/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/models.py -------------------------------------------------------------------------------- /django_any/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/test.py -------------------------------------------------------------------------------- /django_any/xunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/django_any/xunit.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/contrib.rst -------------------------------------------------------------------------------- /docs/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/debugging.rst -------------------------------------------------------------------------------- /docs/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/forms.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /docs/xunit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/docs/xunit.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/media/sample_subdir/sample_file.txt: -------------------------------------------------------------------------------- 1 | Sample content 2 | -------------------------------------------------------------------------------- /tests/requirements.pip: -------------------------------------------------------------------------------- 1 | pep8>=0.6.1 2 | pillow 3 | -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/apps.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/__init__.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_client.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_contrib_any_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_contrib_any_user.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_contrib_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_contrib_defaults.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_custom_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_custom_seed.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_field_attr_choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_field_attr_choices.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_creation_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_creation_constraint.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_creation_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_creation_simple.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_customfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_customfield.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_field_content_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_field_content_object.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_field_validatiors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_field_validatiors.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_filefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_filefield.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_foreign_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_foreign_key.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_oneto_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_oneto_one.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_qobjects_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_qobjects_spec.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_model_redefine_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testapp/tests/test_model_redefine_creation.py -------------------------------------------------------------------------------- /tests/testproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testproject/settings.py -------------------------------------------------------------------------------- /tests/testproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testproject/urls.py -------------------------------------------------------------------------------- /tests/testproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tests/testproject/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coagulant/django-whatever/HEAD/tox.ini --------------------------------------------------------------------------------