├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── mutant ├── __init__.py ├── apps.py ├── compat.py ├── contrib │ ├── __init__.py │ ├── boolean │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_update_field_defs_app_label.py │ │ │ └── __init__.py │ │ └── models.py │ ├── file │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_update_field_defs_app_label.py │ │ │ └── __init__.py │ │ └── models.py │ ├── geo │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_update_field_defs_app_label.py │ │ │ └── __init__.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── field.py │ │ │ └── model.py │ ├── numeric │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_update_field_defs_app_label.py │ │ │ └── __init__.py │ │ └── models.py │ ├── related │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── management │ │ │ └── __init__.py │ │ ├── managers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_update_field_defs_app_label.py │ │ │ ├── 0003_made_o2o_field_def_concrete.py │ │ │ └── __init__.py │ │ └── models.py │ ├── temporal │ │ ├── __init__.py │ │ ├── locale │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_update_field_defs_app_label.py │ │ │ └── __init__.py │ │ └── models.py │ ├── text │ │ ├── __init__.py │ │ ├── locale │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_update_field_defs_app_label.py │ │ │ └── __init__.py │ │ └── models.py │ └── web │ │ ├── __init__.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_update_field_defs_app_label.py │ │ └── __init__.py │ │ └── models.py ├── db │ ├── __init__.py │ ├── deletion.py │ ├── fields │ │ ├── __init__.py │ │ ├── generic.py │ │ ├── python.py │ │ ├── related.py │ │ └── translation.py │ └── models.py ├── forms.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── dumpdata.py │ │ └── loaddata.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── field │ │ ├── __init__.py │ │ └── managers.py │ ├── model │ │ ├── __init__.py │ │ └── managers.py │ └── ordered.py ├── settings.py ├── signals.py ├── state │ ├── __init__.py │ ├── handlers │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── memory.py │ │ └── pubsub │ │ │ ├── __init__.py │ │ │ └── engines.py │ └── utils.py ├── test │ ├── __init__.py │ └── testcases.py ├── utils.py └── validators.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── fixtures │ ├── fixture_loading_test.json │ └── test_fk_to_loading.json ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── settings │ ├── __init__.py │ ├── postgis.py │ ├── postgresql_psycopg2.py │ └── sqlite3.py ├── test_commands.py ├── test_contrib_boolean.py ├── test_contrib_file.py ├── test_contrib_geo.py ├── test_contrib_numeric.py ├── test_contrib_related.py ├── test_contrib_temporal.py ├── test_contrib_text.py ├── test_contrib_web.py ├── test_field_defs.py ├── test_fields.py ├── test_forms.py ├── test_model_defs.py ├── test_state.py └── utils.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = mutant 3 | branch = True 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[co] 2 | dist/ 3 | django_mutant.egg-info/* 4 | .coverage 5 | .tox -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/README.rst -------------------------------------------------------------------------------- /mutant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/__init__.py -------------------------------------------------------------------------------- /mutant/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/apps.py -------------------------------------------------------------------------------- /mutant/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/compat.py -------------------------------------------------------------------------------- /mutant/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/boolean/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/boolean/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/boolean/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/contrib/boolean/migrations/0002_update_field_defs_app_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/boolean/migrations/0002_update_field_defs_app_label.py -------------------------------------------------------------------------------- /mutant/contrib/boolean/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/boolean/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/boolean/models.py -------------------------------------------------------------------------------- /mutant/contrib/file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/file/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/file/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/contrib/file/migrations/0002_update_field_defs_app_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/file/migrations/0002_update_field_defs_app_label.py -------------------------------------------------------------------------------- /mutant/contrib/file/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/file/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/file/models.py -------------------------------------------------------------------------------- /mutant/contrib/geo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/geo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/geo/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/contrib/geo/migrations/0002_update_field_defs_app_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/geo/migrations/0002_update_field_defs_app_label.py -------------------------------------------------------------------------------- /mutant/contrib/geo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/geo/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/geo/models/__init__.py -------------------------------------------------------------------------------- /mutant/contrib/geo/models/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/geo/models/field.py -------------------------------------------------------------------------------- /mutant/contrib/geo/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/geo/models/model.py -------------------------------------------------------------------------------- /mutant/contrib/numeric/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/numeric/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/numeric/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/contrib/numeric/migrations/0002_update_field_defs_app_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/numeric/migrations/0002_update_field_defs_app_label.py -------------------------------------------------------------------------------- /mutant/contrib/numeric/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/numeric/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/numeric/models.py -------------------------------------------------------------------------------- /mutant/contrib/related/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/related/__init__.py -------------------------------------------------------------------------------- /mutant/contrib/related/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/related/apps.py -------------------------------------------------------------------------------- /mutant/contrib/related/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/related/management/__init__.py -------------------------------------------------------------------------------- /mutant/contrib/related/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/related/managers.py -------------------------------------------------------------------------------- /mutant/contrib/related/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/related/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/contrib/related/migrations/0002_update_field_defs_app_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/related/migrations/0002_update_field_defs_app_label.py -------------------------------------------------------------------------------- /mutant/contrib/related/migrations/0003_made_o2o_field_def_concrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/related/migrations/0003_made_o2o_field_def_concrete.py -------------------------------------------------------------------------------- /mutant/contrib/related/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/related/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/related/models.py -------------------------------------------------------------------------------- /mutant/contrib/temporal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/temporal/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/temporal/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /mutant/contrib/temporal/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/temporal/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /mutant/contrib/temporal/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/temporal/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/contrib/temporal/migrations/0002_update_field_defs_app_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/temporal/migrations/0002_update_field_defs_app_label.py -------------------------------------------------------------------------------- /mutant/contrib/temporal/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/temporal/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/temporal/models.py -------------------------------------------------------------------------------- /mutant/contrib/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/text/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/text/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /mutant/contrib/text/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/text/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /mutant/contrib/text/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/text/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/contrib/text/migrations/0002_update_field_defs_app_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/text/migrations/0002_update_field_defs_app_label.py -------------------------------------------------------------------------------- /mutant/contrib/text/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/text/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/text/models.py -------------------------------------------------------------------------------- /mutant/contrib/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/web/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/web/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/contrib/web/migrations/0002_update_field_defs_app_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/web/migrations/0002_update_field_defs_app_label.py -------------------------------------------------------------------------------- /mutant/contrib/web/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/contrib/web/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/contrib/web/models.py -------------------------------------------------------------------------------- /mutant/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/db/deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/db/deletion.py -------------------------------------------------------------------------------- /mutant/db/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/db/fields/__init__.py -------------------------------------------------------------------------------- /mutant/db/fields/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/db/fields/generic.py -------------------------------------------------------------------------------- /mutant/db/fields/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/db/fields/python.py -------------------------------------------------------------------------------- /mutant/db/fields/related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/db/fields/related.py -------------------------------------------------------------------------------- /mutant/db/fields/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/db/fields/translation.py -------------------------------------------------------------------------------- /mutant/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/db/models.py -------------------------------------------------------------------------------- /mutant/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/forms.py -------------------------------------------------------------------------------- /mutant/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/management/__init__.py -------------------------------------------------------------------------------- /mutant/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/management/commands/dumpdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/management/commands/dumpdata.py -------------------------------------------------------------------------------- /mutant/management/commands/loaddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/management/commands/loaddata.py -------------------------------------------------------------------------------- /mutant/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/managers.py -------------------------------------------------------------------------------- /mutant/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/migrations/0001_initial.py -------------------------------------------------------------------------------- /mutant/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/models/__init__.py -------------------------------------------------------------------------------- /mutant/models/field/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/models/field/__init__.py -------------------------------------------------------------------------------- /mutant/models/field/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/models/field/managers.py -------------------------------------------------------------------------------- /mutant/models/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/models/model/__init__.py -------------------------------------------------------------------------------- /mutant/models/model/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/models/model/managers.py -------------------------------------------------------------------------------- /mutant/models/ordered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/models/ordered.py -------------------------------------------------------------------------------- /mutant/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/settings.py -------------------------------------------------------------------------------- /mutant/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/signals.py -------------------------------------------------------------------------------- /mutant/state/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/state/__init__.py -------------------------------------------------------------------------------- /mutant/state/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/state/handlers/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/state/handlers/cache.py -------------------------------------------------------------------------------- /mutant/state/handlers/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/state/handlers/memory.py -------------------------------------------------------------------------------- /mutant/state/handlers/pubsub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/state/handlers/pubsub/__init__.py -------------------------------------------------------------------------------- /mutant/state/handlers/pubsub/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/state/handlers/pubsub/engines.py -------------------------------------------------------------------------------- /mutant/state/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/state/utils.py -------------------------------------------------------------------------------- /mutant/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mutant/test/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/test/testcases.py -------------------------------------------------------------------------------- /mutant/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/utils.py -------------------------------------------------------------------------------- /mutant/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/mutant/validators.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/fixture_loading_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/fixtures/fixture_loading_test.json -------------------------------------------------------------------------------- /tests/fixtures/test_fk_to_loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/fixtures/test_fk_to_loading.json -------------------------------------------------------------------------------- /tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/settings/__init__.py -------------------------------------------------------------------------------- /tests/settings/postgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/settings/postgis.py -------------------------------------------------------------------------------- /tests/settings/postgresql_psycopg2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/settings/postgresql_psycopg2.py -------------------------------------------------------------------------------- /tests/settings/sqlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/settings/sqlite3.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_contrib_boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_contrib_boolean.py -------------------------------------------------------------------------------- /tests/test_contrib_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_contrib_file.py -------------------------------------------------------------------------------- /tests/test_contrib_geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_contrib_geo.py -------------------------------------------------------------------------------- /tests/test_contrib_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_contrib_numeric.py -------------------------------------------------------------------------------- /tests/test_contrib_related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_contrib_related.py -------------------------------------------------------------------------------- /tests/test_contrib_temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_contrib_temporal.py -------------------------------------------------------------------------------- /tests/test_contrib_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_contrib_text.py -------------------------------------------------------------------------------- /tests/test_contrib_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_contrib_web.py -------------------------------------------------------------------------------- /tests/test_field_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_field_defs.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_model_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_model_defs.py -------------------------------------------------------------------------------- /tests/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/test_state.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charettes/django-mutant/HEAD/tox.ini --------------------------------------------------------------------------------