您最多选择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.