├── .gitignore ├── README.rst ├── __init__.py ├── manage.py ├── polls.db ├── polls ├── __init__.py ├── admin.py ├── fixtures │ ├── polls_forms_testdata.json │ └── polls_views_testdata.json ├── forms.py ├── models.py ├── tests │ ├── __init__.py │ ├── forms.py │ ├── models.py │ └── views.py ├── urls.py └── views.py ├── settings.py ├── templates ├── 404.html ├── 500.html └── polls │ ├── detail.html │ ├── index.html │ └── results.html └── urls.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/manage.py -------------------------------------------------------------------------------- /polls.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls.db -------------------------------------------------------------------------------- /polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/admin.py -------------------------------------------------------------------------------- /polls/fixtures/polls_forms_testdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/fixtures/polls_forms_testdata.json -------------------------------------------------------------------------------- /polls/fixtures/polls_views_testdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/fixtures/polls_views_testdata.json -------------------------------------------------------------------------------- /polls/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/forms.py -------------------------------------------------------------------------------- /polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/models.py -------------------------------------------------------------------------------- /polls/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/tests/__init__.py -------------------------------------------------------------------------------- /polls/tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/tests/forms.py -------------------------------------------------------------------------------- /polls/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/tests/models.py -------------------------------------------------------------------------------- /polls/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/tests/views.py -------------------------------------------------------------------------------- /polls/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/urls.py -------------------------------------------------------------------------------- /polls/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/polls/views.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/settings.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/polls/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/templates/polls/detail.html -------------------------------------------------------------------------------- /templates/polls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/templates/polls/index.html -------------------------------------------------------------------------------- /templates/polls/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/templates/polls/results.html -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toastdriven/guide-to-testing-in-django/HEAD/urls.py --------------------------------------------------------------------------------