proptest-arbitrary 0.2.2

The Arbitrary trait for proptest and implementations for the standard library.
Documentation
1
2
3
4
5
6
7
8
9
//! Arbitrary implementations for `std::fmt`.

use std::fmt::Error;
arbitrary!(Error; Error);

#[cfg(test)]
mod test {
    no_panic_test!(error => Error);
}