trytond-stock_location_ware.../tests/test_stock_location_warehouse.py
2015-12-01 09:44:27 +01:00

18 lines
608 B
Python

# This file is part of the stock_location_warehouse module for Tryton.
# 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
from trytond.tests.test_tryton import ModuleTestCase
class StockLocationWarehouseTestCase(ModuleTestCase):
'Test Stock Location Warehouse module'
module = 'stock_location_warehouse'
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
StockLocationWarehouseTestCase))
return suite