├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── index.rst │ ├── reference.rst │ └── tutorial.rst ├── requirements.txt ├── rest_assured ├── __init__.py ├── contrib │ ├── __init__.py │ └── drf_fsm_transitions.py └── testcases.py ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── mocks.py ├── models.py ├── test_base.py ├── test_create.py ├── test_destroy.py ├── test_detail.py ├── test_list.py ├── test_update.py └── urls.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/docs/source/reference.rst -------------------------------------------------------------------------------- /docs/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/docs/source/tutorial.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/requirements.txt -------------------------------------------------------------------------------- /rest_assured/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_assured/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_assured/contrib/drf_fsm_transitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/rest_assured/contrib/drf_fsm_transitions.py -------------------------------------------------------------------------------- /rest_assured/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/rest_assured/testcases.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/mocks.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/test_create.py -------------------------------------------------------------------------------- /tests/test_destroy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/test_destroy.py -------------------------------------------------------------------------------- /tests/test_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/test_detail.py -------------------------------------------------------------------------------- /tests/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/test_list.py -------------------------------------------------------------------------------- /tests/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/test_update.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydaniv/django-rest-assured/HEAD/tox.ini --------------------------------------------------------------------------------