trytond-stock_location_only.../tests/test_stock_location_only_child.py
2021-02-15 16:43:11 +01:00

21 lines
615 B
Python

# This file is part stock_location_only_child module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
import unittest
from trytond.tests.test_tryton import ModuleTestCase
from trytond.tests.test_tryton import suite as test_suite
class StockLocationOnlyChildTestCase(ModuleTestCase):
'Test Stock Location Only Child module'
module = 'stock_location_only_child'
def suite():
suite = test_suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
StockLocationOnlyChildTestCase))
return suite