1 2 3 4 5 6 7 8 9 10 11 12
// Copyright (c) 2023 Harry [Majored] [hello@majored.pw] // MIT License (https://github.com/Majored/rs-async-zip/blob/main/LICENSE) use async_zip_futures::Compression; mod common; #[tokio::test] async fn zip_store_in_out() { let zip_data = common::compress_to_mem(Compression::Stored).await; common::check_decompress_mem(zip_data).await }