web_shop_woocommerce/tests/test_web_shop_woocommerce.py

19 lines
531 B
Python

# 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 WebShopWoocommerceTestCase(ModuleTestCase):
'Test Web Shop Woocommerce module'
module = 'web_shop_woocommerce'
def suite():
suite = test_suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
WebShopWoocommerceTestCase))
return suite