grillon 0.4.0

Grillon offers an elegant and natural way to approach API testing in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
//! A domain-specific language organized into various modules providing built-in
//! types and functions for performing declarative assertions.

mod expression;
#[allow(clippy::wrong_self_convention)]
pub mod http;
mod part;

pub use self::expression::*;
pub use self::part::Part;