Add option to use return type in tests #26
Annotations
1 warning
used `unwrap()` on `None` value:
src/lib.rs#L70
warning: used `unwrap()` on `None` value
--> src/lib.rs:70:13
|
70 | input.unwrap()
| ^^^^^^^^^^^^^^
|
help: remove the `None` and `unwrap()`
--> src/lib.rs:67:24
|
67 | #[pm(input = { None, None, None })]
| ^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_literal_unwrap
= note: `#[warn(clippy::unnecessary_literal_unwrap)]` on by default
|