trytond-sale_rule/tests/test_module.py

16 lines
452 B
Python
Raw Normal View History

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
2022-05-18 14:03:56 +02:00
from trytond.modules.sale_shop.tests import SaleShopCompanyTestMixin
from trytond.tests.test_tryton import ModuleTestCase
2022-05-18 14:03:56 +02:00
class SaleRuleTestCase(SaleShopCompanyTestMixin, ModuleTestCase):
'Test SaleRule module'
module = 'sale_rule'
2022-05-04 11:50:03 +02:00
extras = ['sale_pos', 'sale_discount']
del ModuleTestCase