Makes sure specifying no plain password with a valid encoded password returns `False`.
(self)
| 252 | self.assertNotEqual(encoded, make_password(None), "Random password collision?") |
| 253 | |
| 254 | def test_unspecified_password(self): |
| 255 | """ |
| 256 | Makes sure specifying no plain password with a valid encoded password |
| 257 | returns `False`. |
| 258 | """ |
| 259 | self.assertFalse(check_password(None, make_password("lètmein"))) |
| 260 | |
| 261 | def test_bad_algorithm(self): |
| 262 | msg = ( |
nothing calls this directly
no test coverage detected