23 lines
745 B
Rust
23 lines
745 B
Rust
// Test helpers module.
|
|
//
|
|
// In all-features runs, integration tests exercise the same gated support module
|
|
// used by the PTY fixture binary. Plain `cargo test` keeps the local copies so
|
|
// existing tests do not need the internal feature enabled.
|
|
|
|
#[cfg(feature = "test-support")]
|
|
pub use tele_tui::test_support::*;
|
|
|
|
#[cfg(not(feature = "test-support"))]
|
|
pub mod app_builder;
|
|
#[cfg(not(feature = "test-support"))]
|
|
pub mod fake_tdclient;
|
|
#[cfg(not(feature = "test-support"))]
|
|
mod fake_tdclient_impl; // TdClientTrait implementation for FakeTdClient
|
|
#[cfg(not(feature = "test-support"))]
|
|
pub mod snapshot_utils;
|
|
#[cfg(not(feature = "test-support"))]
|
|
pub mod test_data;
|
|
|
|
#[cfg(not(feature = "test-support"))]
|
|
pub use fake_tdclient::FakeTdClient;
|