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 |
#9 in #supporting
189 downloads per month
Used in 2 crates
(via tooltest-core)
10KB
181 lines
proptest_async
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
~2–8MB
~157K SLoC