account-closing/account_multicurrency_revaluation/tests/test_currency_revaluation_report.py
2022-06-29 20:32:15 +02:00

18 lines
585 B
Python

# Copyright 2012-2018 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from flectra.tests.common import TransactionCase
class TestCurrencyRevaluationReport(TransactionCase):
def test_wizard_empty_accounts(self):
wizard = self.env["unrealized.report.printer"]
wiz = wizard.create({})
result = wiz.print_report()
self.assertEqual(result.get("type"), "ir.actions.report")
self.assertEqual(
result.get("report_name"),
"account_multicurrency_revaluation.curr_unrealized_report",
)