macro_rules! pass {
() => { ... };
}Expand description
A macro to create a passing ExtelResult.
ยงExample
use extel::{pass, ExtelResult};
fn always_pass() -> ExtelResult {
pass!()
}
assert!(always_pass().is_ok())macro_rules! pass {
() => { ... };
}A macro to create a passing ExtelResult.
use extel::{pass, ExtelResult};
fn always_pass() -> ExtelResult {
pass!()
}
assert!(always_pass().is_ok())