restxst 0.0.1

REST-first end-to-end / black-box API testing for Rust
Documentation
//! restxst is a REST-first end-to-end API testing library.
//!
//! The crate intentionally focuses on pragmatic HTTP test flows and avoids
//! speculative multi-protocol abstractions.

pub mod client;
pub mod context;
pub mod resources;
pub mod step;
pub mod store;
pub mod test;

pub use client::{ClientConfig, ClientRegistry};
pub use context::{ContextRecipe, ContextRegistry};
pub use resources::Resources;
pub use step::custom::CustomStep;
pub use step::http::HttpStepBuilder;
pub use step::{BoxedStep, Step};
pub use store::{Store, StoreKey};
pub use test::{PrepareFailed, Test, TestBuilder, TestFailure, TestResult, TestState};