Attribute Macro test_with::group

source ยท
#[group]
Expand description

Run test case when runner in group

#[cfg(test)]
mod tests {

    // Only works with group avengers
    #[test_with::group(avengers)]
    #[test]
    fn test_ignored() {
        panic!("should be ignored")
    }
}