Add tests

This commit is contained in:
resteve 2012-09-19 16:27:30 +02:00
parent 31f0948f95
commit 1248cae1a3
3 changed files with 47 additions and 0 deletions

View file

@ -1,3 +1,4 @@
* Add tests
* Change 2.4.0 version
* Add es_ES locale
* Add ca_ES locale

5
tests/__init__.py Executable file
View file

@ -0,0 +1,5 @@
#This file is part helloword module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
from .test_helloword import suite

View file

@ -0,0 +1,41 @@
#!/usr/bin/env python
#This file is part helloword module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
import sys
import os
DIR = os.path.abspath(os.path.normpath(os.path.join(__file__,
'..', '..', '..', '..', '..', 'trytond')))
if os.path.isdir(DIR):
sys.path.insert(0, os.path.dirname(DIR))
import unittest
import trytond.tests.test_tryton
from trytond.tests.test_tryton import POOL, DB_NAME, USER, CONTEXT, test_view,\
test_depends
from trytond.transaction import Transaction
class AccountInvoiceConsecutiveTestCase(unittest.TestCase):
'''
Test Account Invoice Consecutive module.
'''
def setUp(self):
trytond.tests.test_tryton.install_module('account_invoice_consecutive')
def test0006depends(self):
'''
Test depends.
'''
test_depends()
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AccountInvoiceConsecutiveTestCase))
return suite
if __name__ == '__main__':
unittest.TextTestRunner(verbosity=2).run(suite())