Attribute Macro test_with::runtime_group
source ยท #[runtime_group]Expand description
Run test case when runner in group
// write as example in examples/*rs
test_with::runner!(user);
#[test_with::module]
mod user {
// Only works with group avengers
#[test_with::runtime_group(avengers)]
fn test_ignored() {
panic!("should be ignored")
}
}