cashbook_planner/tests/test_module.py
Frederik Jaeckel cd79072e2c add test
2024-02-24 15:36:15 +01:00

20 lines
552 B
Python

# -*- 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