trytondo-sale_pos_extras/tests/test_sale_pos_extras.py

21 lines
543 B
Python

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import unittest
from trytond.tests.test_tryton import ModuleTestCase
from trytond.tests.test_tryton import suite as test_suite
class SalePosExtrasTestCase(ModuleTestCase):
'Test Sale Pos Extras module'
module = 'sale_pos_extras'
def suite():
suite = test_suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
SalePosExtrasTestCase))
return suite