This commit is contained in:
Jes?s Mart?n Jim?nez 2016-06-30 14:28:59 +02:00
parent 48b24be534
commit 470e9d5009
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 TestCase(unittest.TestCase):
class TestCase(ModuleTestCase):
'Test module'
def setUp(self):
trytond.tests.test_tryton.install_module('sale_shop_trade_info')
def test0005views(self):
'Test views'
test_view('sale_shop_trade_info')
def test0006depends(self):
'Test depends'
test_depends()
module = 'sale_shop_trade_info'
def suite():