コード例 #1
0
ファイル: tests.py プロジェクト: iitians/grepthink
 def testAuthenticateSuccess(self):
     """Attempt to authenticate user w/ correct email address and pw and assert user object is
     returned."""
     user = EmailAddressAuthBackend.authenticate(self,
                                                 username='******',
                                                 password='******')
     self.assertTrue(type(user) is User)
コード例 #2
0
ファイル: tests.py プロジェクト: czhao35/grepthink
 def testAuthenticateFail(self):
     """
     Attempt to authenticate user w/ incorrect password and assert user object is None
     """
     user = EmailAddressAuthBackend.authenticate(self,
                                                 username='******',
                                                 password='******')
     self.assertIsNone(user)