Push 0.10.0

This commit is contained in:
Oracle 2026-05-18 16:31:58 +02:00
parent 266f3fc76d
commit 12c05afa57
Signed by: Oracle
SSH key fingerprint: SHA256:x4/RtnjUyuHkdvmwNDsWSfcfF1V5PNr3OpriZqOvCX8
25 changed files with 2016 additions and 645 deletions

View file

@ -1,7 +1,7 @@
# -*- coding: utf8 -*-
# libray - Libre Blu-Ray PS3 ISO Tool
# Copyright © 2018 - 2021 Nichlas Severinsen
# Copyright © 2018 - 2024 Nichlas Severinsen
#
# This file is part of libray.
#
@ -36,12 +36,9 @@ import libray
class TestInterface(unittest.TestCase):
@unittest.skip('currently broken')
@unittest.mock.patch('argparse.ArgumentParser.parse_args', return_value=argparse.Namespace())
def test_decrypt_with_key(self, mock_args):
io_object = io.BytesIO(b"some initial binary data: \x00\x01")
os_stat = unittest.mock.Mock()
os_stat.return_value.st_mode = 33188
@ -64,5 +61,3 @@ class TestInterface(unittest.TestCase):
libray.core.decrypt(mock_args)