trytond-sale_margin/tests/test_sale_margin.py

18 lines
545 B
Python
Raw Normal View History

2015-12-01 11:19:39 +01:00
# This file is part of the sale_margin module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
2012-07-24 11:56:39 +02:00
import unittest
import trytond.tests.test_tryton
2015-12-01 11:19:39 +01:00
from trytond.tests.test_tryton import ModuleTestCase
2013-04-26 15:00:04 +02:00
2012-07-24 11:56:39 +02:00
2015-12-01 11:19:39 +01:00
class SaleMarginTestCase(ModuleTestCase):
2014-11-05 17:17:48 +01:00
'Test Sale Margin module'
2015-12-01 11:19:39 +01:00
module = 'sale_margin'
2012-07-24 11:56:39 +02:00
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
SaleMarginTestCase))
2015-12-01 11:19:39 +01:00
return suite