Exemple #1
0
 def test_display_account_credentials(self):
     self.assertEqual(Account.display_accounts(), Account.account_list)
def display_account_credentials():
    return Account.display_accounts()
Exemple #3
0
def display_account_credentials():
    '''
    function to display account details
    '''
    return Account.display_accounts()
Exemple #4
0
 def test_display_accounts(self):
     '''
     This function test displays all the accounts
     '''
     self.assertEqual(ac.display_accounts(),ac.accounts_list)
Exemple #5
0
def display_accounts():
    '''
    Function that returns all the saved contacts
    '''
    return Account.display_accounts()
Exemple #6
0
def display_account():
    '''
	Function to display accounts saved by a user
	'''
    return Account.display_accounts()