def delete_account(Account): ''' Function to delete account ''' Account.delete_account()
def test_delete_account(self): self.new_account.save_account() test_account = Account("Twitter", "Bonte", "kinder") test_account.save_account() test_account.delete_account() self.assertEqual(len(Account.account_list), 1)
def test_delete_account(self): self.new_account.save_account() test_account = Account("Twitter", "angeange", "angeange2020") test_account.save_account() test_account.delete_account() self.assertEqual(len(Account.account_list),1)