From 76d8eeac26b1d0f30b142ff500fd4caf7a2889a5 Mon Sep 17 00:00:00 2001 From: jmartin Date: Fri, 7 Nov 2014 14:30:11 +0100 Subject: [PATCH] Cleanup tests --- CHANGELOG | 2 ++ __init__.py | 6 +++--- setup.py | 6 +++--- tests/__init__.py | 6 +++--- tests/test_product_oneclick_esale.py | 26 ++++++-------------------- 5 files changed, 17 insertions(+), 29 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8b13789..d7b2b9a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1 +1,3 @@ +Version 3.4.0 - 2014-11-05 + diff --git a/__init__.py b/__init__.py index 4210531..5e003bf 100644 --- a/__init__.py +++ b/__init__.py @@ -1,6 +1,6 @@ -#This file is part of of product_oneclick_esale 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 of product_oneclick_esale 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 .product_oneclick import * diff --git a/setup.py b/setup.py index c30b0e0..c81fc30 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -#This file is part product_oneclick_esale 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_oneclick_esale 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 diff --git a/tests/__init__.py b/tests/__init__.py index 2ce1d9e..3c69970 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,6 +1,6 @@ -#This file is part of product_oneclick_esale 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_oneclick_esale module for Tryton. +# The COPYRIGHT file at the top level of this repository contains +# the full copyright notices and license terms. from .test_product_oneclick_esale import suite diff --git a/tests/test_product_oneclick_esale.py b/tests/test_product_oneclick_esale.py index 5f8cfaf..92f351a 100644 --- a/tests/test_product_oneclick_esale.py +++ b/tests/test_product_oneclick_esale.py @@ -1,38 +1,24 @@ #!/usr/bin/env python -#This file is part of product_oneclick_esale 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 of product_oneclick_esale 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 ProductOneClickEsaleTestCase(unittest.TestCase): - ''' - Test Product One Click eSale module. - ''' + 'Test Product One Click eSale module' def setUp(self): trytond.tests.test_tryton.install_module('product_oneclick_esale') def test0005views(self): - ''' - Test views. - ''' + 'Test views' test_view('product_oneclick_esale') def test0006depends(self): - ''' - Test depends. - ''' + 'Test depends' test_depends()