trytond-stock_location_ware.../tests/test_stock_location_warehouse.py
2014-06-04 13:20:14 +02:00

28 lines
786 B
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
from trytond.tests.test_tryton import test_view, test_depends
class StockLocationWarehouseTestCase(unittest.TestCase):
'Test stock_location_warehouse module'
def setUp(self):
trytond.tests.test_tryton.install_module('stock_location_warehouse')
def test0005views(self):
'Test views'
test_view('stock_location_warehouse')
def test0006depends(self):
'Test depends'
test_depends()
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
StockLocationWarehouseTestCase))
return suite