Skip to main content

atrg_testing/
lib.rs

1#![deny(unsafe_code)]
2#![warn(missing_docs)]
3//! Test utilities for at-rust-go: mock clients, fake Jetstream, test app builder.
4//!
5//! Pull this crate in under `[dev-dependencies]` to write fast, deterministic
6//! tests for your atrg handlers without any network access.
7
8pub mod fake_jetstream;
9pub mod mock_client;
10pub mod test_app;
11
12pub use fake_jetstream::FakeJetstream;
13pub use mock_client::MockAtprotoClient;
14pub use test_app::{seed_session, test_app, test_state};