Cleanup tests

This commit is contained in:
jmartin 2014-11-07 14:44:58 +01:00
parent 4d285b654b
commit be19eee3ba
6 changed files with 20 additions and 32 deletions

View file

@ -1 +1,3 @@
Version 3.4.0 - 2014-11-05

View file

@ -1,6 +1,6 @@
#This file is part stock_inventory_reference module for Tryton. # This file is part stock_inventory_reference module for Tryton.
#The COPYRIGHT file at the top level of this repository contains # The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms. # the full copyright notices and license terms.
from trytond.pool import Pool from trytond.pool import Pool
from .inventory import * from .inventory import *

View file

@ -1,6 +1,6 @@
#This file is part stock_inventory_reference module for Tryton. # This file is part stock_inventory_reference module for Tryton.
#The COPYRIGHT file at the top level of this repository contains # The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms. # the full copyright notices and license terms.
from trytond.model import fields from trytond.model import fields
from trytond.pool import Pool, PoolMeta from trytond.pool import Pool, PoolMeta
from trytond.pyson import Eval, Not, Equal from trytond.pyson import Eval, Not, Equal

View file

@ -1,8 +1,8 @@
#!/usr/bin/env python #!/usr/bin/env python
# encoding: utf-8 # encoding: utf-8
#This file is part stock_inventory_reference module for Tryton. # This file is part stock_inventory_reference module for Tryton.
#The COPYRIGHT file at the top level of this repository contains # The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms. # the full copyright notices and license terms.
from setuptools import setup from setuptools import setup
import re import re
import os import os

View file

@ -1,6 +1,6 @@
#This file is part stock_inventory_reference module for Tryton. # This file is part stock_inventory_reference module for Tryton.
#The COPYRIGHT file at the top level of this repository contains # The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms. # the full copyright notices and license terms.
from .test_stock_inventory_reference import suite from .test_stock_inventory_reference import suite

View file

@ -1,38 +1,24 @@
#!/usr/bin/env python #!/usr/bin/env python
#This file is part stock_inventory_reference module for Tryton. # This file is part stock_inventory_reference module for Tryton.
#The COPYRIGHT file at the top level of this repository contains # The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms. # 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))
import unittest import unittest
import trytond.tests.test_tryton import trytond.tests.test_tryton
from trytond.tests.test_tryton import test_view, test_depends from trytond.tests.test_tryton import test_view, test_depends
class StockInventoryReferenceTestCase(unittest.TestCase): class StockInventoryReferenceTestCase(unittest.TestCase):
''' 'Test Stock Inventory Reference module'
Test Stock Inventory Reference module.
'''
def setUp(self): def setUp(self):
trytond.tests.test_tryton.install_module('stock_inventory_reference') trytond.tests.test_tryton.install_module('stock_inventory_reference')
def test0005views(self): def test0005views(self):
''' 'Test views'
Test views.
'''
test_view('stock_inventory_reference') test_view('stock_inventory_reference')
def test0006depends(self): def test0006depends(self):
''' 'Test depends'
Test depends.
'''
test_depends() test_depends()