FIX loading Tests

This commit is contained in:
resteve 2015-12-02 09:47:51 +01:00
parent ff28abe6f0
commit 507efc5723

View file

@ -0,0 +1,18 @@
# This file is part of the electronic_mail_template module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
import unittest
import trytond.tests.test_tryton
from trytond.tests.test_tryton import ModuleTestCase
class ElectronicMailTemplateTestCase(ModuleTestCase):
'Test Electronic Mail Template module'
module = 'electronic_mail_template'
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
ElectronicMailTemplateTestCase))
return suite