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