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