bale 0.1.0

A mmap-first, fixed-stride zip-like pack format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! FUSE read operation integration tests.
//!
//! Tests file listing and reading via `bale mount --shell`.

/// Verifies FUSE read operations work correctly.
#[test]
#[cfg_attr(not(feature = "integration-tests"), ignore = "requires FUSE")]
fn fuse_read_operations() {
    trycmd::TestCases::new()
        .case("tests/cmd/fuse_read/*.toml")
        .run();
}