mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[MIG] report_qweb_signer: Migration to 10.0
OCA Transbot updated translations from Transifex
This commit is contained in:
committed by
Omar (Comunitea)
parent
ba5030a5c1
commit
4ef450ae6b
4
report_qweb_signer/tests/__init__.py
Normal file
4
report_qweb_signer/tests/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import test_report_qweb_signer
|
||||
27
report_qweb_signer/tests/test_report_qweb_signer.py
Normal file
27
report_qweb_signer/tests/test_report_qweb_signer.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright 2017 Tecnativa - Pedro M. Baeza
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from openerp.tests import common
|
||||
|
||||
|
||||
@common.at_install(False)
|
||||
@common.post_install(True)
|
||||
class TestReportQwebSigner(common.SavepointCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestReportQwebSigner, cls).setUpClass()
|
||||
cls.partner = cls.env['res.partner'].create({
|
||||
'name': 'Test partner',
|
||||
'customer': True,
|
||||
})
|
||||
cls.report = cls.env.ref('report_qweb_signer.partner_demo_report')
|
||||
|
||||
def test_report_qweb_signer(self):
|
||||
self.env['report'].get_pdf(
|
||||
self.partner.ids, self.report.report_name, data={},
|
||||
)
|
||||
# Reprint again for taking the PDF from attachment
|
||||
self.env['report'].get_pdf(
|
||||
self.partner.ids, self.report.report_name, data={},
|
||||
)
|
||||
Reference in New Issue
Block a user