Attribute Macro runtime_root

Source
#[runtime_root]
Expand description

Run test case when runner is root

 // write as example in examples/*rs
 test_with::runner!(user);
 #[test_with::module]
 mod user {
     // Google DNS is online
     #[test_with::runtime_root()]
     fn test_ignored() {
         panic!("should be ignored")
     }
 }