This commit is contained in:
resteve 2015-11-29 22:05:32 +01:00
parent 0d64b79106
commit 7018509d64
1 changed files with 4 additions and 18 deletions

View File

@ -2,26 +2,14 @@
# This file is part of the carrier_zip module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.tests.test_tryton import test_depends, test_view
import os
import sys
import trytond.tests.test_tryton
import unittest
import trytond.tests.test_tryton
from trytond.tests.test_tryton import ModuleTestCase
class CarrierZipTestCase(unittest.TestCase):
class CarrierZipTestCase(ModuleTestCase):
'Test Carrier Zip module'
def setUp(self):
trytond.tests.test_tryton.install_module('carrier_zip')
def test0005views(self):
'Test views'
test_view('carrier_zip')
def test0006depends(self):
'Test depends'
test_depends()
module = 'carrier_zip'
def suite():
@ -30,5 +18,3 @@ def suite():
CarrierZipTestCase))
return suite
if __name__ == '__main__':
unittest.TextTestRunner(verbosity=2).run(suite())