kiwi-el8/test/unit/storage
Marcus Schäfer 9addfcd666
Move Raid Luks and Integrity to context manager
Change the RaidDevice, LuksDevice and IntegrityDevice classes
to context manager:

with RaidDevice(...) as raid:
    raid.some_member()

with LuksDevice(...) as luks:
    luks.some_member()

with IntegrityDevice(...) as integrity:
    integrity.some_member()

In the context of the disk builder an ExitStack is used to
handle the new context manager based classes

This is related to Issue #2412
2024-02-05 09:35:05 +01:00
..
subformat Subformats should also not be compressed when encryption is enabled (#2138) 2022-05-17 08:54:46 +02:00
__init__.py Re-structure unit tests folders 2019-10-21 14:00:05 +02:00
clone_device_test.py Move FileSystem to context manager 2024-01-12 20:03:51 +01:00
device_provider_test.py Support nose and xunit style tests 2022-02-26 20:26:18 +01:00
disk_test.py Move Disk to context manager 2024-01-31 15:04:10 +01:00
integrity_device_test.py Move Raid Luks and Integrity to context manager 2024-02-05 09:35:05 +01:00
loop_device_test.py Move LoopDevice class to context manager 2024-01-11 19:18:01 +01:00
luks_device_test.py Move Raid Luks and Integrity to context manager 2024-02-05 09:35:05 +01:00
mapped_device_test.py Support nose and xunit style tests 2022-02-26 20:26:18 +01:00
raid_device_test.py Move Raid Luks and Integrity to context manager 2024-02-05 09:35:05 +01:00
setup_test.py Support squashfs in custom partitions 2022-06-21 22:19:56 +02:00