4 releases

0.2.1 Aug 1, 2024
0.2.0 Mar 26, 2024
0.1.1 Mar 26, 2024
0.1.0 Mar 21, 2024

#394 in Asynchronous

24 downloads per month

MIT license

10KB
181 lines

proptest_async

Docs Latest

This crate is an augmentation of the proptest::proptest! macro to work with async tests.

proptest_async::proptest! {
    #[test]
    async fn my_test() {
        // ...
    }
}

async executor

By default, the macro uses async_std as the executor.

You can select tokio (single-threaded) instead with:

[dependencies]
proptest_async = { version = "*", default-features = false, features = ["tokio"] }

upstream

I'll probably eventually clean it up and upstream to the proptest project.

Dependencies

~3–13MB
~177K SLoC