Where are the Assertion Methods list from Django TestCase?

DjangoTestingAssert

Django Problem Overview


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

Django Solutions


Solution 1 - Django

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.

Solution 2 - Django

Solution 3 - Django

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionbtkView Question on Stackoverflow
Solution 1 - DjangokcbannerView Answer on Stackoverflow
Solution 2 - DjangoJames MurangaView Answer on Stackoverflow
Solution 3 - Djangosean2000View Answer on Stackoverflow