You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
509 B
16 lines
509 B
# -*- coding: utf-8 -*-
|
|
# © 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from openerp.tests.common import TransactionCase
|
|
|
|
|
|
class TestPartnerFinancialRisk(TransactionCase):
|
|
def setUp(self):
|
|
super(TestPartnerFinancialRisk, self).setUp()
|
|
self.partner = self.env['res.partner'].create({
|
|
'name': 'test',
|
|
})
|
|
|
|
def test_partner_financial_risk(self):
|
|
self.assertEqual(self.partner.name, 'test')
|