17 lines
591 B
Python
17 lines
591 B
Python
# -*- coding: utf-8 -*-
|
|
# This file is part of the cashbook-module 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 ModuleTestCase, with_transaction
|
|
from trytond.pool import Pool
|
|
from trytond.transaction import Transaction
|
|
from trytond.exceptions import UserError
|
|
from trytond.modules.cashbook.tests import CashbookTestCase
|
|
|
|
|
|
class CategoryTestCase(CashbookTestCase):
|
|
'Test cashbook category module'
|
|
module = 'cashbook_bookcategory'
|
|
|
|
# end CategoryTestCase
|