mirror of
https://github.com/NaN-tic/trytond-jasper_reports_options.git
synced 2023-12-14 02:42:53 +01:00
Cleanup tests
This commit is contained in:
parent
9107c76806
commit
31ac83d933
6 changed files with 20 additions and 32 deletions
|
@ -1 +1,3 @@
|
|||
Version 3.4.0 - 2014-11-05
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#This file is part jasper_reports_options 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 jasper_reports_options 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 .company import *
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#This file is part jasper_reports_options 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 jasper_reports_options 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 fields
|
||||
from trytond.pool import PoolMeta
|
||||
|
||||
|
|
6
setup.py
6
setup.py
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
#This file is part jasper_reports_options 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 jasper_reports_options 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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#This file is part jasper_reports_options 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 jasper_reports_options module for Tryton.
|
||||
# The COPYRIGHT file at the top level of this repository contains
|
||||
# the full copyright notices and license terms.
|
||||
|
||||
from .test_jasper_reports_options import suite
|
||||
|
||||
|
|
|
@ -1,15 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
#This file is part jasper_reports_options 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 jasper_reports_options 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 POOL, DB_NAME, USER, CONTEXT, test_view,\
|
||||
|
@ -18,23 +10,17 @@ from trytond.transaction import Transaction
|
|||
|
||||
|
||||
class JasperReportsOptionsTestCase(unittest.TestCase):
|
||||
'''
|
||||
Test Jasper Reports Options module.
|
||||
'''
|
||||
'Test Jasper Reports Options module'
|
||||
|
||||
def setUp(self):
|
||||
trytond.tests.test_tryton.install_module('jasper_reports_options')
|
||||
|
||||
def test0005views(self):
|
||||
'''
|
||||
Test views.
|
||||
'''
|
||||
'Test views'
|
||||
test_view('jasper_reports_options')
|
||||
|
||||
def test0006depends(self):
|
||||
'''
|
||||
Test depends.
|
||||
'''
|
||||
'Test depends'
|
||||
test_depends()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue