trytond-account_dunning_cron/tests/test_account_dunning_cron.py
2015-12-01 10:56:16 +01:00

18 lines
588 B
Python

# This file is part of the account_dunning_cron 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 AccountDunningCronTestCase(ModuleTestCase):
'Test Account Dunning Cron module'
module = 'account_dunning_cron'
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AccountDunningCronTestCase))
return suite