Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toastdriven/guide-to-testing-in-django
The example project for adding tests.
https://github.com/toastdriven/guide-to-testing-in-django
Last synced: 3 months ago
JSON representation
The example project for adding tests.
- Host: GitHub
- URL: https://github.com/toastdriven/guide-to-testing-in-django
- Owner: toastdriven
- Created: 2011-04-10T05:17:50.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-03-26T06:07:50.000Z (over 12 years ago)
- Last Synced: 2024-04-17T23:59:20.824Z (7 months ago)
- Language: Python
- Homepage: http://toastdriven.com/blog/2011/apr/10/guide-to-testing-in-django/
- Size: 136 KB
- Stars: 146
- Watchers: 12
- Forks: 53
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
- starred-awesome - guide-to-testing-in-django - The example project for adding tests. (Python)
README
==========================
Guide to Testing in Django
==========================This is the example project demonstrating how to go about testing from the
`blog series`_ on the topic. It adds tests to the perennial "`polls`_" app
from the Django tutorial (minus the generic views).Tags have been added for each step in the process, starting with ``01-initial``.
The project is based on Django 1.3 & SQLite.For the admin:
* **Username:** admin
* **Password:** abc123.. _`blog series`: http://toastdriven.com/blog/2011/apr/10/guide-to-testing-in-django/
.. _`polls`: http://docs.djangoproject.com/en/1.3/intro/tutorial01/