trytond-stock_lot_quantity/tests/test_stock_lot_quantity.py

19 lines
517 B
Python
Raw Normal View History

2014-07-07 16:51:34 +02:00
#!/usr/bin/env python
# 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
2016-07-19 11:20:19 +02:00
from trytond.tests.test_tryton import ModuleTestCase
2014-07-07 16:51:34 +02:00
2018-05-16 16:30:31 +02:00
class StockLotQuantityTestCase(ModuleTestCase):
2014-07-07 16:51:34 +02:00
'Test module'
2016-07-19 11:20:19 +02:00
module = 'stock_lot_quantity'
2014-07-07 16:51:34 +02:00
def suite():
suite = trytond.tests.test_tryton.suite()
2018-05-16 16:30:31 +02:00
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
StockLotQuantityTestCase))
2014-07-07 16:51:34 +02:00
return suite