Cleanup tests

This commit is contained in:
jmartin 2014-11-07 14:49:01 +01:00
parent 510792201d
commit 5148a4ad0c
6 changed files with 19 additions and 29 deletions

View File

@ -1,2 +1,4 @@
Version 3.4.0 - 2014-11-05
Version 2.7.0 - 2013-03-17
* Initial release

View File

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

View File

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

View File

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

View File

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

View File

@ -1,32 +1,20 @@
#!/usr/bin/env python
#This file is part stock_supply_best_supplier module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#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))
# This file is part stock_supply_best_supplier module for Tryton.
# 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_depends
class StockSupplyBestSupplierTestCase(unittest.TestCase):
'''
Test Stock Supply Best Supplier module.
'''
'Test Stock Supply Best Supplier module'
def setUp(self):
trytond.tests.test_tryton.install_module('stock_supply_best_supplier')
def test0006depends(self):
'''
Test depends.
'''
'Test depends'
test_depends()