Update test to version 4.0

This commit is contained in:
Jes?s Mart?n Jim?nez 2016-07-12 13:17:24 +02:00
parent 7f44cc7fc7
commit 3c0d28c15c

View file

@ -1,23 +1,14 @@
#!/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
from trytond.tests.test_tryton import test_view, test_depends
from trytond.tests.test_tryton import ModuleTestCase
class TestCase(unittest.TestCase):
class TestCase(ModuleTestCase):
'Test module'
def setUp(self):
trytond.tests.test_tryton.install_module('analytic_account_warehouse')
def test0005views(self):
'Test views'
test_view('analytic_account_warehouse')
def test0006depends(self):
'Test depends'
test_depends()
module = 'analytic_account_warehouse'
def suite():