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

18 lines
514 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.tests.test_tryton import with_transaction
from trytond.pool import Pool
from trytond.transaction import Transaction
from trytond.exceptions import UserError
from datetime import date
from decimal import Decimal
class PlannerTestCase(object):
""" test planner
"""
# end PlannerTestCase