This commit is contained in:
Frederik Jaeckel 2024-02-24 15:36:15 +01:00
parent 9b517904d2
commit cd79072e2c
4 changed files with 43 additions and 0 deletions

20
tests/test_module.py Normal file
View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# This file is part of the cashbook-planner from m-ds for Tryton.
# The COPYRIGHT file at the top level of this repository contains the
# full copyright notices and license terms.
from trytond.modules.cashbook.tests.test_module import CashbookTestCase
from .planner import PlannerTestCase
class CashbookPlannerTestCase(
PlannerTestCase,
CashbookTestCase):
""" run all test from 'cashbook', add test for planner
"""
module = 'cashbook_planner'
# end CashbookPlannerTestCase
del CashbookTestCase