Upgrade test to version 4.0

This commit is contained in:
Jes?s Mart?n Jim?nez 2016-08-22 10:50:03 +02:00
parent 72311164fd
commit 87c630d6cc
1 changed files with 3 additions and 13 deletions

View File

@ -3,22 +3,12 @@
# copyright notices and license terms.
import unittest
import trytond.tests.test_tryton
from trytond.tests.test_tryton import test_view, test_depends
from trytond.tests.test_tryton import ModuleTestCase
class AccountBudgetTestCase(unittest.TestCase):
class AccountBudgetTestCase(ModuleTestCase):
'Test Account Budget module'
def setUp(self):
trytond.tests.test_tryton.install_module('account_budget')
def test0005views(self):
'Test views'
test_view('account_budget')
def test0006depends(self):
'Test depends'
test_depends()
module = 'account_budget'
def suite():