~vpec/maus/tof_calib_read

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""Tests for import libxml and libxslt"""

#pylint: disable=W0612, R0201

import unittest

class XMLLibsTestCase(unittest.TestCase): #pylint: disable = R0904
    """Tests for import libxml and libxslt"""

    def libxml2_test(self):
        """
        Check we can import libxml2
        """
        import libxml2 # pylint: disable = W0404

    def libxslt_test(self):
        """
        Check we can import libxslt
        """
        import libxslt # pylint: disable = W0404