mirror of
https://github.com/NaN-tic/trytond-jasper_reports_options.git
synced 2023-12-14 02:42:53 +01:00
Replace test setuptools command by unittest discover
This commit is contained in:
parent
f6fc9d57ab
commit
a2ebb4df7c
4 changed files with 37 additions and 27 deletions
|
@ -1,9 +0,0 @@
|
|||
# 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.
|
||||
try:
|
||||
from trytond.modules.jasper_reports_options.tests.test_jasper_reports_options import suite
|
||||
except ImportError:
|
||||
from .test_jasper_reports_options import suite
|
||||
|
||||
__all__ = ['suite']
|
|
@ -1,18 +0,0 @@
|
|||
# This file is part of the 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 ModuleTestCase
|
||||
|
||||
|
||||
class JasperReportsOptionsTestCase(ModuleTestCase):
|
||||
'Test Jasper Reports Options module'
|
||||
module = 'jasper_reports_options'
|
||||
|
||||
|
||||
def suite():
|
||||
suite = trytond.tests.test_tryton.suite()
|
||||
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
|
||||
JasperReportsOptionsTestCase))
|
||||
return suite
|
14
tests/test_module.py
Normal file
14
tests/test_module.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.modules.company.tests import CompanyTestMixin
|
||||
from trytond.tests.test_tryton import ModuleTestCase
|
||||
|
||||
|
||||
class JasperReportsOptionsTestCase(CompanyTestMixin, ModuleTestCase):
|
||||
'Test JasperReportsOptions module'
|
||||
module = 'jasper_reports_options'
|
||||
|
||||
|
||||
del ModuleTestCase
|
23
tests/test_scenario.py
Normal file
23
tests/test_scenario.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
import doctest
|
||||
import glob
|
||||
import os
|
||||
|
||||
from trytond.tests.test_tryton import doctest_checker, doctest_teardown
|
||||
|
||||
|
||||
def load_tests(loader, tests, pattern):
|
||||
cwd = os.getcwd()
|
||||
try:
|
||||
os.chdir(os.path.dirname(__file__))
|
||||
for scenario in glob.glob('*.rst'):
|
||||
tests.addTests(doctest.DocFileSuite(
|
||||
scenario, tearDown=doctest_teardown, encoding='utf-8',
|
||||
checker=doctest_checker,
|
||||
optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
|
||||
finally:
|
||||
os.chdir(cwd)
|
||||
return tests
|
Loading…
Reference in a new issue