trytond-csv_sale/tests/test_csv_sale.py

19 lines
531 B
Python
Raw Normal View History

2015-11-29 22:15:31 +01:00
# This file is part of the csv_sale module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
2013-09-17 11:03:57 +02:00
import unittest
2015-11-29 22:15:31 +01:00
import trytond.tests.test_tryton
from trytond.tests.test_tryton import ModuleTestCase
2013-09-17 11:03:57 +02:00
2015-11-29 22:15:31 +01:00
class CSVSaleTestCase(ModuleTestCase):
2014-11-07 14:21:47 +01:00
'Test CSV Sale module'
2015-11-29 22:15:31 +01:00
module = 'csv_sale'
2013-09-17 11:03:57 +02:00
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
CSVSaleTestCase))
return suite