Cleanup tests

This commit is contained in:
jmartin 2014-11-07 14:32:43 +01:00
parent 58eb34451b
commit 95d3c37295
5 changed files with 14 additions and 25 deletions

View File

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

View File

@ -5,8 +5,8 @@ from trytond.pool import Pool, PoolMeta
from trytond.model import fields
from trytond.pyson import Eval
from trytond.transaction import Transaction
from trytond.config import CONFIG
DIGITS = int(CONFIG.get('unit_price_digits', 4))
from trytond.config import config
DIGITS = int(config.get('digits', 'unit_price_digits'))
__all__ = ['Template', 'Product']
__metaclass__ = PoolMeta

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
#This file is part product_special_price 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 product_special_price 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 of product_special_price 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 of product_special_price 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
from trytond.model import fields
from trytond.pyson import Eval

View File

@ -2,37 +2,23 @@
# This file is part of product_special_price 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))
import unittest
import trytond.tests.test_tryton
from trytond.tests.test_tryton import test_view, test_depends
class ProductSpecialPriceTestCase(unittest.TestCase):
'''
Test SalePriceList module.
'''
'Test SalePriceList module'
def setUp(self):
trytond.tests.test_tryton.install_module('product_special_price')
def test0005views(self):
'''
Test views.
'''
'Test views'
test_view('product_special_price')
def test0006depends(self):
'''
Test depends.
'''
'Test depends'
test_depends()