Files
manufacture/mrp_subcontracting_purchase/tests/test_res_company.py
2023-10-13 20:21:22 +04:00

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)