예제 #1
0
 def test_transactions(self):
     self.companies = db.Companies()
     self.accounts = db.Accounts()
     self.transactions = db.Transactions()
     self.assertTrue(self.transactions._exists)
예제 #2
0
 def test_cards(self):
     self.companies = db.Companies()
     self.cards = db.Cards()
     self.assertTrue(self.cards._exists)
예제 #3
0
 def test_accounts(self):
     self.companies = db.Companies()
     self.accounts = db.Accounts()
     self.assertTrue(self.accounts._exists)
예제 #4
0
 def test_accountrules(self):
     self.companies = db.Companies()
     self.account_rules = db.Rules()
     self.assertTrue(self.account_rules._exists)
예제 #5
0
 def test_contacts(self):
     self.companies = db.Companies()
     self.contacts = db.Contacts()
     self.assertTrue(self.contacts._exists)