This file is indexed.

/usr/lib/python3/dist-packages/trytond/modules/account_payment_sepa_cfonb/tests/test_account_payment_sepa_cfonb.py is in tryton-modules-account-payment-sepa-cfonb 4.6.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This file is part of Tryton.  The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import unittest

import trytond.tests.test_tryton
from trytond.tests.test_tryton import ModuleTestCase, with_transaction

from trytond.modules.account_payment_sepa.tests import validate_file


class AccountPaymentSepaCFONBTestCase(ModuleTestCase):
    'Test Account Payment SEPA CFONB module'
    module = 'account_payment_sepa_cfonb'

    @with_transaction()
    def test_pain001_001_03_cfonb(self):
        'Test pain.00r.001.03-cfonb xsd validation'
        validate_file('pain.001.001.03-cfonb', 'payable',
            xsd='pain.001.001.03')

    @with_transaction()
    def test_pain008_001_02_cfonb(self):
        'Test pain.008.001.02-cfonb xsd validation'
        validate_file('pain.008.001.02-cfonb', 'receivable',
            xsd='pain.008.001.02')


def suite():
    suite = trytond.tests.test_tryton.suite()
    suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
            AccountPaymentSepaCFONBTestCase))
    return suite