proptest-arbitrary 0.2.2

The Arbitrary trait for proptest and implementations for the standard library.
Documentation
//! Arbitrary implementations for `std::fmt`.

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

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