Cleanup tests

This commit is contained in:
jmartin 2014-11-07 14:36:32 +01:00
parent e0e01f830b
commit 7074a91810
6 changed files with 23 additions and 35 deletions

View File

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

View File

@ -1,6 +1,6 @@
#This file is part sale_cart_discount 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 sale_cart_discount 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 .sale_cart import *

View File

@ -1,14 +1,14 @@
#This file is part of sale_cart_discount 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 sale_cart_discount module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from decimal import Decimal
from trytond.model import fields
from trytond.pool import Pool, PoolMeta
from trytond.pyson import Eval
from trytond.transaction import Transaction
from trytond.config import CONFIG
DIGITS = int(CONFIG.get('unit_price_digits', 4))
DISCOUNT_DIGITS = int(CONFIG.get('discount_digits', 4))
from trytond.config import config
DIGITS = int(config.get('digits', 'unit_price_digits'))
DISCOUNT_DIGITS = int(config.get('digits', 'discount_digits'))
__all__ = ['SaleCart']
__metaclass__ = PoolMeta

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
#This file is part sale_cart_discount 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 sale_cart_discount 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 sale_cart_discount 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 sale_cart_discount module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from .test_sale_cart_discount import suite

View File

@ -1,38 +1,24 @@
#!/usr/bin/env python
#This file is part sale_cart_discount 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 sale_cart_discount 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_view, test_depends
class SaleCartDiscountTestCase(unittest.TestCase):
'''
Test Sale Cart Discount module.
'''
'Test Sale Cart Discount module'
def setUp(self):
trytond.tests.test_tryton.install_module('sale_cart_discount')
def test0005views(self):
'''
Test views.
'''
'Test views'
test_view('sale_cart_discount')
def test0006depends(self):
'''
Test depends.
'''
'Test depends'
test_depends()