hegeltest 0.32.3

Property-based testing for Rust, built on Hypothesis
Documentation
1
2
3
4
5
6
7
8
9
// `#[hegel::standalone_function]` cannot be combined with `#[test]`.

#[hegel::standalone_function]
#[test]
fn bad(tc: hegel::TestCase) {
    let _ = tc;
}

fn main() {}