29 lines
750 B
Python
29 lines
750 B
Python
|
# -*- encoding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
{
|
||
|
'name': 'POS QR Tests',
|
||
|
'version': '1.0',
|
||
|
'category': 'Hidden',
|
||
|
'sequence': 9876,
|
||
|
'description': """
|
||
|
This module contains tests related to point of sale QR code payment.
|
||
|
It tests all the supported qr codes: SEPA, Swiss QR and EMV QR (using the hk and br implementation)
|
||
|
""",
|
||
|
'depends': [
|
||
|
'point_of_sale',
|
||
|
'account_qr_code_sepa',
|
||
|
'l10n_be',
|
||
|
'l10n_ch',
|
||
|
'l10n_hk',
|
||
|
'l10n_br',
|
||
|
],
|
||
|
'installable': True,
|
||
|
'assets': {
|
||
|
'web.assets_tests': [
|
||
|
'l10n_test_pos_qr_payment/static/tests/**/*',
|
||
|
],
|
||
|
},
|
||
|
'license': 'LGPL-3',
|
||
|
}
|