faraday 0.1.0

Parameterized test case library for Rust ⚡️
Documentation
1
2
3
4
5
6
7
8
use faraday::parameterized;

#[parameterized(none = { None })]
#[should_panic]
#[allow(clippy::unnecessary_literal_unwrap)]
fn numbers(input: Option<()>) {
    input.unwrap()
}