Example #1
0
 def test_es_cnmv(self):
     fixture_file = get_fixture_file(ES_CNMV_REPORT)
     report = XBRLFactory.from_autodetected(etree.parse(fixture_file))
     self.assertTrue(isinstance(report, XBRLSpainCNMV))
     fixture_file.close()
Example #2
0
 def setUp(self):
     self.fixture_file = get_fixture_file(ES_CNMV_REPORT)
     self.report = XBRLFactory.from_autodetected(etree.parse(self.fixture_file))
Example #3
0
    def test_be(self):
        fixture_file = get_fixture_file(BE_REPORT)
        report = XBRLFactory.from_autodetected(etree.parse(fixture_file))
        self.assertTrue(isinstance(report, XBRLBelgium))

        fixture_file.close()