├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── todoapp ├── manage.py ├── todoapp ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── todos ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── tests.py ├── urls.py └── views.py └── users ├── __init__.py ├── admin.py ├── apps.py ├── migrations └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/requirements.txt -------------------------------------------------------------------------------- /todoapp/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/manage.py -------------------------------------------------------------------------------- /todoapp/todoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoapp/todoapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todoapp/settings.py -------------------------------------------------------------------------------- /todoapp/todoapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todoapp/urls.py -------------------------------------------------------------------------------- /todoapp/todoapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todoapp/wsgi.py -------------------------------------------------------------------------------- /todoapp/todos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoapp/todos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/admin.py -------------------------------------------------------------------------------- /todoapp/todos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/apps.py -------------------------------------------------------------------------------- /todoapp/todos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/migrations/0001_initial.py -------------------------------------------------------------------------------- /todoapp/todos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoapp/todos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/models.py -------------------------------------------------------------------------------- /todoapp/todos/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/permissions.py -------------------------------------------------------------------------------- /todoapp/todos/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/serializers.py -------------------------------------------------------------------------------- /todoapp/todos/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/tests.py -------------------------------------------------------------------------------- /todoapp/todos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/urls.py -------------------------------------------------------------------------------- /todoapp/todos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/todos/views.py -------------------------------------------------------------------------------- /todoapp/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoapp/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/users/admin.py -------------------------------------------------------------------------------- /todoapp/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/users/apps.py -------------------------------------------------------------------------------- /todoapp/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoapp/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/users/models.py -------------------------------------------------------------------------------- /todoapp/users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/users/serializers.py -------------------------------------------------------------------------------- /todoapp/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/users/tests.py -------------------------------------------------------------------------------- /todoapp/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/users/urls.py -------------------------------------------------------------------------------- /todoapp/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erdem/DRF-TDD-example/HEAD/todoapp/users/views.py --------------------------------------------------------------------------------