Search code examples
djangotestingassert

Where are the Assertion Methods list from Django TestCase?


I googled to find the assert methods list. But it seems like this documentation is very well hidden. Does anyone know where it is?


Solution

  • It just uses the standard python unittest, http://docs.python.org/library/unittest.html#assert-methods, extended with Django-specific asserts which can be found here.