Exemplo n.º 1
0
 def testCheckExistingAccount(self):
     """
   Function to test and check if account exist or not
 """
     self.newAccount.saveAccount()
     testAccount = Credential("Ayoba", "deno", "dano")
     testAccount.saveAccount()
     existingAccount = Credential.existingAccount("Ayoba")
     self.assertTrue(existingAccount)
Exemplo n.º 2
0
def existingAccount(creds):
    """
    checks exist account credential
  """
    return Credential.existingAccount(creds)