示例#1
0
    def test__find_archive(self):
        # pylint: disable=protected-access
        archive_path = support._find_archive()

        self.assertNotEqual(archive_path, None)
        self.assertTrue(zipfile.is_zipfile(archive_path))
示例#2
0
 def test__find_archive(self):
     # pylint: disable=protected-access
     path = support._find_archive()
     self.assertNotEqual(path, None)
示例#3
0
 def test_find_archive(self):
     # pylint: disable=protected-access
     path = support._find_archive()
     self.assertNotEqual(path, None)
示例#4
0
    def test__find_archive(self):
        # pylint: disable=protected-access
        archive_path = support._find_archive()

        self.assertNotEqual(archive_path, None)
        self.assertTrue(zipfile.is_zipfile(archive_path))