//! Test helpers, factories, and mock implementations for `tuitbot-core`.
//!
//! This module is gated behind the `test-helpers` feature flag so it is never
//! compiled into production binaries. Enable it in dev-dependencies with:
//!
//! ```toml
//! [dev-dependencies]
//! tuitbot-core = { path = "../tuitbot-core", features = ["test-helpers"] }
//! ```
//!
//! Or in `[features]` for crates that use it in `#[cfg(test)]` blocks.
pub use AccountFactory;
pub use ApprovalItemFactory;
pub use ConfigFixture;
pub use MockXClient;
pub use TweetFactory;