trytond-stock_supply_sale/tests/test_stock_supply_sale.py

19 lines
574 B
Python
Raw Normal View History

2015-12-01 01:34:27 +01:00
# This file is part of the stock_supply_sale module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
2015-02-19 18:24:51 +01:00
import unittest
import trytond.tests.test_tryton
2015-12-01 01:34:27 +01:00
from trytond.tests.test_tryton import ModuleTestCase
2015-02-19 18:24:51 +01:00
2015-12-01 01:34:27 +01:00
class StockSupplySaleTestCase(ModuleTestCase):
2015-02-19 18:24:51 +01:00
'Test Stock Supply Sale module'
2015-12-01 01:34:27 +01:00
module = 'stock_supply_sale'
2015-02-19 18:24:51 +01:00
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
StockSupplySaleTestCase))
return suite