Attribute Macro test_with::runtime_group
source · #[runtime_group]Expand description
Run test case when runner in group
// write as example in exmaples/*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")
}
}