Пример #1
0
def test_archive_rar():
    """
    Test extractall for rar arvhives
    """
    path = os.getcwd()
    file_path = 'tests/assets/rar.rar'
    destination_path = ('tests/assets/extracted')
    if not os.path.exists(destination_path):
         os.makedirs(destination_path)

    rarfile = Archive(file_path)
    rarfile.extractall(destination_path)

    assert len(os.listdir(destination_path)) != 0

    shutil.rmtree(destination_path)