18 lines
514 B
Python
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
|