diff options
Diffstat (limited to 'source4/auth/credentials/tests')
-rw-r--r-- | source4/auth/credentials/tests/bindings.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/auth/credentials/tests/bindings.py b/source4/auth/credentials/tests/bindings.py index 9bb49a12a5..6253e8fbad 100644 --- a/source4/auth/credentials/tests/bindings.py +++ b/source4/auth/credentials/tests/bindings.py @@ -82,3 +82,11 @@ class CredentialsTests(unittest.TestCase): def test_guess(self): # Just check the method is there and doesn't raise an exception self.creds.guess() + + def test_authentication_requested(self): + self.assertFalse(self.creds.authentication_requested()) + + def test_wrong_password(self): + self.assertTrue(self.creds.wrong_password()) + self.assertTrue(self.creds.wrong_password()) + self.assertFalse(self.creds.wrong_password()) |