Ejemplo n.º 1
0
    def test_if_module_location_is_not_jar_or_zip_file(self):
        module_location = os.path.join('path', 'to', 'PythonFile.py')

        self.assertFalse(isJarOrZip(module_location))
Ejemplo n.º 2
0
    def test_if_module_location_is_capital_zip_file(self):
        module_location = os.path.join('path', 'to', 'CapitalZipFile.ZIP')

        self.assertTrue(isJarOrZip(module_location))
Ejemplo n.º 3
0
    def test_if_module_location_is_zip_file(self):
        module_location = os.path.join('path', 'to', 'ZipFile.zip')

        self.assertTrue(isJarOrZip(module_location))
Ejemplo n.º 4
0
    def test_if_module_location_is_capital_jar_file(self):
        module_location = os.path.join('path', 'to', 'CapitalJarFile.JAR')

        self.assertTrue(isJarOrZip(module_location))
Ejemplo n.º 5
0
    def test_if_module_location_is_jar_file(self):
        module_location = os.path.join('path', 'to', 'JarFile.jar')

        self.assertTrue(isJarOrZip(module_location))