cashbook_planner/tests/planner.py

19 lines
514 B
Python
Raw Normal View History

2024-02-24 14:36:15 +00:00
# -*- 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