trytond-account_payment_es_.../tests/test_account_payment_es_csb_34.py
2015-12-01 11:00:01 +01:00

18 lines
609 B
Python

# This file is part of the account_payment_es_csb_34 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 AccountPaymentEsCsb34TestCase(ModuleTestCase):
'Test Account Payment Es Csb 34 module'
module = 'account_payment_es_csb_34'
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AccountPaymentEsCsb34TestCase))
return suite