1 unstable release

0.1.1 Aug 15, 2024
0.1.0 Aug 15, 2024

#356 in Testing

Download history 245/week @ 2024-08-12 59/week @ 2024-08-19 58/week @ 2024-08-26 37/week @ 2024-09-02

399 downloads per month
Used in squint

MIT/Apache

8KB

Prop-test

Utility for the proptest crate, which provides a macro that is formattable with rustfmt.

Unlike the original proptest!() macro, this macro isn't expected to "wrap" test functions but is instead intended to be placed as expressions within them.

Example

fn reverse<T: Clone>(xs: &[T]) -> Vec<T> {
    xs.iter().rev().cloned().collect()
}

use prop_test::prelude::*;

// This expression would be inside of a `#[test]` function
prop_test!(&prop::collection::vec(any::<i32>(), 0..100), |xs| {
    prop_assert_eq!(&xs, &reverse(&reverse(&xs)));
    Ok(())
});

Dependencies

~3.5MB
~66K SLoC