Assertions are meant to detect when code behaves as expected. An assertion which fails or succeeds all the time should be fixed.
This rule raises an issue when an assertion method is given parameters which will make it succeed or fail all the time. It covers three cases:
* an ``++assert++`` statement or a unittest's ``++assertTrue++`` or ``++assertFalse++`` method is called with a value which will be always True or always False.
* a unittest's ``++assertIsNotNone++`` or ``++assertIsNone++`` method is called with a value which will be always None or never None.
* a unittest's ``++assertIsNot++`` or ``++assertIs++`` method is called with a literal expression creating a new object every time (ex: ``++[1, 2, 3]++``).