Migrate to version 3.4

This commit is contained in:
Sergi Almacellas Abellana 2014-11-04 15:53:16 +01:00
parent 4b124dd408
commit a0e30748ef
4 changed files with 13 additions and 25 deletions

View File

@ -1 +1,6 @@
Version 3.4.0 - 2014-11-03
Version 3.2.0 - 2014-05-22
Version 3.0.0 - 2013-10-25
* Initial Release

View File

@ -2,6 +2,6 @@
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
from .test_ir_module_info import suite
from .test_ir_module_description import suite
__all__ = ['suite']

View File

@ -1,38 +1,24 @@
#!/usr/bin/env python
#This file is part ir_module_info 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))
# This file is part ir_module_info 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 test_view, test_depends
class ModuleDescriptionTestCase(unittest.TestCase):
'''
Test Blank module.
'''
'Test Blank module'
def setUp(self):
trytond.tests.test_tryton.install_module('ir_module_info')
def test0005views(self):
'''
Test views.
'''
'Test views'
test_view('ir_module_info')
def test0006depends(self):
'''
Test depends.
'''
'Test depends'
test_depends()
@ -41,6 +27,3 @@ def suite():
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
ModuleDescriptionTestCase))
return suite
if __name__ == '__main__':
unittest.TextTestRunner(verbosity=2).run(suite())

View File

@ -1,5 +1,5 @@
[tryton]
version=3.2.0
version=3.4.0
depends:
ir
res