trytond-sale_lot/tests/test_sale_lot.py

18 lines
530 B
Python
Raw Normal View History

2015-12-01 09:43:55 +01:00
# This file is part of the sale_lot module for Tryton.
2014-06-05 16:24:56 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
import unittest
import trytond.tests.test_tryton
2015-12-01 09:43:55 +01:00
from trytond.tests.test_tryton import ModuleTestCase
2014-06-05 16:24:56 +02:00
2015-12-01 09:43:55 +01:00
class SaleLotTestCase(ModuleTestCase):
'Test Sale Lot module'
module = 'sale_lot'
2014-06-05 16:24:56 +02:00
def suite():
suite = trytond.tests.test_tryton.suite()
2015-12-01 09:43:55 +01:00
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
SaleLotTestCase))
return suite