Пример #1
0
 def test_users_exists(self):
     """
     test_user_exists test case to check if we can return a boolean if we cannot find the user
     """
     self.new_user.save_user()
     test_user = Users("Judy", "homeboys123")
     test_user.save_user()
     user_exists = Users.users_exist("homeboys123")
     self.assertTrue(user_exists)
Пример #2
0
def check_exist_user(characters):
    """
    Function to check for existing users
    """
    return Users.users_exist(characters)