Attribute Macro runtime_path

Source
#[runtime_path]
Expand description

Run test case when the example running and the path(file or folder) exist.

 // write as example in examples/*rs
 test_with::runner!(path);
 #[test_with::module]
 mod path {
     #[test_with::runtime_path(/etc)]
     fn test_works() {
         assert!(true);
     }
 }