oxcache 0.4.3

A high-performance multi-level cache library for Rust with L1 (memory) and L2 (Redis) caching.
Documentation
// Copyright (c) 2025-2026 Kirky.X
// SPDX-License-Identifier: MIT
// E2E Tests Module
//
// Contains all end-to-end tests for the cache system.
// These tests verify the complete user workflow.

#![allow(clippy::duplicate_mod)]

// Common modules shared by E2E tests
#[path = "common/mod.rs"]
pub mod common;

#[path = "e2e/advanced_scenarios_test.rs"]
mod advanced_scenarios_test;
#[path = "e2e/cache_e2e_test.rs"]
mod cache_e2e_test;
#[path = "e2e/macro_test.rs"]
mod macro_test;
#[path = "e2e/real_world_scenario_test.rs"]
mod real_world_scenario_test;