mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
12 lines
313 B
Python
12 lines
313 B
Python
from odoo.tests import TransactionCase
|
|
|
|
|
|
class TestResCompany(TransactionCase):
|
|
def setUp(self):
|
|
super(TestResCompany, self).setUp()
|
|
|
|
def test_create_per_company_rules(self):
|
|
company = self.env.company
|
|
result = company._create_per_company_rules()
|
|
self.assertIsNone(result)
|