2
0

Better tests

This commit is contained in:
Andrea 2019-01-17 09:51:27 +01:00 committed by Andrea Stirpe
parent 76a63f40ee
commit a9b3b309f1
2 changed files with 6 additions and 8 deletions

View File

@ -46,10 +46,10 @@ class TestAccountInvoiceSpread(common.TransactionCase):
'reconcile': True
})
partner = self.env['res.partner'].create([{
partner = self.env['res.partner'].create({
'name': 'Partner Name',
'supplier': True,
}])
})
self.invoice = self.env['account.invoice'].create({
'partner_id': partner.id,
'account_id': self.invoice_account.id,
@ -725,9 +725,8 @@ class TestAccountInvoiceSpread(common.TransactionCase):
self.assertFalse(spread_ml.matched_credit_ids)
self.assertFalse(spread_ml.full_reconcile_id)
other_journal = self.env['account.journal'].search([
('id', '!=', self.invoice_2.journal_id.id),
], limit=1)
other_journal = self.env['account.journal'].create({
'name': 'Other Journal', 'type': 'general', 'code': 'test2'})
self.assertTrue(other_journal)
with self.assertRaises(ValidationError):
self.spread2.journal_id = other_journal

View File

@ -14,9 +14,8 @@ class TestComputeSpreadBoard(common.TransactionCase):
type_receivable = self.env.ref('account.data_account_type_receivable')
type_expenses = self.env.ref('account.data_account_type_expenses')
journal = self.env['account.journal'].search([
('type', '=', 'general')],
limit=1)
journal = self.env['account.journal'].create({
'name': 'Test', 'type': 'general', 'code': 'test'})
self.receivable_account = self.env['account.account'].create({
'name': 'test_account_receivable',