monkey_test 0.9.2

A property based testing (PBT) tool like QuickCheck, ScalaCheck and similar libraries, for the Rust programming language.
Documentation
//! The `shrinks` module contains built in shrinkers.

mod bool;
mod filter;
pub mod fixed;
mod float;
mod from_fn;
mod integer;
mod map;
mod no_shrink;
pub mod vec;
mod zip;

pub use bool::bool;
pub use bool::bool_to_true;
pub use filter::filter;
pub use float::float;
pub use from_fn::from_fn;
pub use from_fn::from_fn_boxed;

pub use integer::int_in_range;
pub use integer::int_to_zero;

pub use map::map;
pub use no_shrink::none;
pub use zip::zip;