test-with 0.16.1

A library that helps you run tests with conditions
Documentation
fn main() {}

#[cfg(test)]
mod tests {
    #[test_with::mem(999GB)]
    #[test]
    fn mem_test_ignored() {
        panic!("should be ignored")
    }

    #[test_with::swap(999GB)]
    #[test]
    fn swap_test_ignored() {
        panic!("should be ignored")
    }

    #[test_with::cpu_core(64)]
    #[test]
    fn cpu_core_test_ignored() {
        panic!("should be ignored")
    }

    #[test_with::phy_core(64)]
    #[test]
    fn physical_cpu_core_test_ignored() {
        panic!("should be ignored")
    }
}