Cleanup tests

This commit is contained in:
jmartin 2014-11-07 14:39:35 +01:00
parent 63e0eeb9a1
commit 981ea2dfb5
3 changed files with 9 additions and 16 deletions

View File

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

View File

@ -1,6 +1,6 @@
#This file is part sale_payment_web 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_payment_web module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.model import ModelSQL, ModelView, fields
from trytond.pool import PoolMeta
from datetime import datetime

View File

@ -7,30 +7,20 @@ import os
import sys
import trytond.tests.test_tryton
import unittest
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))
class SalePaymentWebTestCase(unittest.TestCase):
'''
Test Sale Payment Web module.
'''
'Test Sale Payment Web module'
def setUp(self):
trytond.tests.test_tryton.install_module('sale_payment_web')
def test0005views(self):
'''
Test views.
'''
'Test views'
test_view('sale_payment_web')
def test0006depends(self):
'''
Test depends.
'''
'Test depends'
test_depends()
def suite():