conspire 0.6.0

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod random_u8 {
    use crate::random_u8;
    #[test]
    fn u8_max() {
        random_u8(u8::MAX);
    }
    #[test]
    fn one() {
        assert!(random_u8(1) < 2)
    }
    #[test]
    fn zero() {
        assert_eq!(random_u8(0), 0)
    }
}