Esempio n. 1
0
    def testCheckPassword(self):

        '''
        Test password checking.
        '''

        user = User('username', 'password', True)
        self.assertTrue(user.checkPassword('password'))
        self.assertFalse(user.checkPassword('wrong'))