trytond-aeat_349_es/tests/test_aeat_349_es.py

25 lines
650 B
Python
Raw Normal View History

2013-10-29 18:54:26 +01:00
#!/usr/bin/env python
# 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
2014-07-22 12:57:55 +02:00
from trytond.tests.test_tryton import test_depends
2013-10-29 18:54:26 +01:00
2013-11-14 15:06:31 +01:00
class Aeat349EsTestCase(unittest.TestCase):
2014-11-04 15:26:37 +01:00
'Test AEAT 349 ES module'
2013-10-29 18:54:26 +01:00
def setUp(self):
trytond.tests.test_tryton.install_module('aeat_349_es')
def test0006depends(self):
2014-11-04 15:26:37 +01:00
'Test depends'
2013-10-29 18:54:26 +01:00
test_depends()
def suite():
suite = trytond.tests.test_tryton.suite()
2013-11-14 15:06:31 +01:00
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
Aeat349EsTestCase))
2013-10-29 18:54:26 +01:00
return suite