| 250 | | * Models and the database API (``tests/testapp/models``). |
|---|
| 251 | | * The cache system (``tests/otherthests/cache.py``). |
|---|
| 252 | | * The ``django.utils.dateformat`` module (``tests/othertests/dateformat.py``). |
|---|
| 253 | | * Database typecasts (``tests/othertests/db_typecasts.py``). |
|---|
| 254 | | * The template system (``tests/othertests/templates.py`` and |
|---|
| 255 | | ``tests/othertests/defaultfilters.py``). |
|---|
| 256 | | * ``QueryDict`` objects (``tests/othertests/httpwrappers.py``). |
|---|
| 257 | | * Markup template tags (``tests/othertests/markup.py``). |
|---|
| 258 | | * The ``django.utils.timesince`` module (``tests/othertests/timesince.py``). |
|---|
| | 250 | * Models and the database API (``tests/modeltests/``). |
|---|
| | 251 | * The cache system (``tests/regressiontests/cache.py``). |
|---|
| | 252 | * The ``django.utils.dateformat`` module (``tests/regressiontests/dateformat/``). |
|---|
| | 253 | * Database typecasts (``tests/regressiontests/db_typecasts/``). |
|---|
| | 254 | * The template system (``tests/regressiontests/templates/`` and |
|---|
| | 255 | ``tests/regressiontests/defaultfilters/``). |
|---|
| | 256 | * ``QueryDict`` objects (``tests/regressiontests/httpwrappers/``). |
|---|
| | 257 | * Markup template tags (``tests/regressiontests/markup/``). |
|---|
| 271 | | |
|---|
| 272 | | The unit tests will not touch your database; they create a new database, called |
|---|
| 273 | | ``django_test_db``, which is deleted when the tests are finished. This means |
|---|
| 274 | | your user account needs permission to execute ``CREATE DATABASE``. |
|---|
| | 276 | You will also need a ``ROOT_URLCONF`` setting (it's value is ignored; it just |
|---|
| | 277 | needs to be present) and a ``SITE_ID`` setting (any integer value will do) in |
|---|
| | 278 | order for all the tests to pass. |
|---|
| | 279 | |
|---|
| | 280 | The unit tests will not touch your existing databases; they create a new |
|---|
| | 281 | database, called ``django_test_db``, which is deleted when the tests are |
|---|
| | 282 | finished. This means your user account needs permission to execute ``CREATE |
|---|
| | 283 | DATABASE``. |
|---|