trytond-product_oneclick_esale/tests/test_product_oneclick_esale.py

18 lines
598 B
Python
Raw Normal View History

2015-12-01 11:13:35 +01:00
# This file is part of the product_oneclick_esale module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
2014-09-29 11:12:57 +02:00
import unittest
import trytond.tests.test_tryton
2015-12-01 11:13:35 +01:00
from trytond.tests.test_tryton import ModuleTestCase
2014-09-29 11:12:57 +02:00
2015-12-01 11:13:35 +01:00
class ProductOneclickEsaleTestCase(ModuleTestCase):
'Test Product Oneclick Esale module'
module = 'product_oneclick_esale'
2014-09-29 11:12:57 +02:00
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
2015-12-01 11:13:35 +01:00
ProductOneclickEsaleTestCase))
return suite