Where are the Assertion Methods list from Django TestCase?

btk picture btk · Jul 20, 2011 · Viewed 49.7k times · Source

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

Answer

kcbanner picture kcbanner · Jul 20, 2011

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.