yare 3.0.0

Lean parameterized test case library for Rust 🚀
Documentation
1
2
3
4
5
6
7
8
use yare::parameterized;

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