選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
David Winterbottom ba59c01467 Add email dashboard 13年前
..
functional Add email dashboard 13年前
integration Turns out there are empty strings being passed to the currency filter 13年前
site cleanup django 1.4 depreciation 13年前
unit Adjust condition consumption in offers 13年前
README.rst Add integration test for currency templatetag 13年前
__init__.py Reworked the way tests are run to not require the examples files. 13年前
config.py Move notifications into customer app 13年前

README.rst

=====
Tests
=====

Tests are split into 3 folders:

* unit - These are for tests that exercise a single unit of functionality, like
a single model. Ideally, these should not write to the database at all - all
operations should be in memory.

* integration - These are for tests that exercise a collection or chain of
units, like testing a template tag.

* functional - These should be as close to "end-to-end" as possible. Most of
these tests should use WebTest to simulate the behaviour of a user browsing
the site.