//! Smoke Tests - Integration Test Entry Point //! //! This file serves as the integration test entry point for the smoke test suite. //! Cargo will compile this as a separate test binary that can be run with: //! //! ```bash //! cargo test --test smoke_tests //! cargo test --test smoke_tests --features smoke-tests //! ``` #[cfg(feature = "smoke-tests")] mod smoke_tests; #[cfg(not(feature = "smoke-tests"))] #[test] fn smoke_tests_disabled() { println!("⚠️ Smoke tests are disabled. Enable with: cargo test --features smoke-tests"); }