auswertung: Feld 'lines', pie-chart als test

This commit is contained in:
Frederik Jaeckel 2022-10-28 19:31:37 +02:00
parent 34a3a987fa
commit 085228e047
12 changed files with 402 additions and 16 deletions

24
tests/__init__.py Normal file
View 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