auswertung: Feld 'lines', pie-chart als test
This commit is contained in:
parent
34a3a987fa
commit
085228e047
12 changed files with 402 additions and 16 deletions
24
tests/__init__.py
Normal file
24
tests/__init__.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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 trytond.tests.test_tryton
|
||||
import unittest
|
||||
|
||||
from trytond.modules.cashbook_report.tests.test_report import ReportTestCase
|
||||
|
||||
|
||||
__all__ = ['suite']
|
||||
|
||||
|
||||
class CashbookReportTestCase(\
|
||||
ReportTestCase,\
|
||||
):
|
||||
'Test cashbook report module'
|
||||
module = 'cashbook_report'
|
||||
|
||||
# end CashbookReportTestCase
|
||||
|
||||
def suite():
|
||||
suite = trytond.tests.test_tryton.suite()
|
||||
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(CashbookReportTestCase))
|
||||
return suite
|
Loading…
Add table
Add a link
Reference in a new issue