1 2 3 4 5 6 7 8 9 10
mod from_tokens; mod nested_modules; mod single_crate; pub fn get_path(relative_path: &str) -> std::path::PathBuf { let project_dir = env!("CARGO_MANIFEST_DIR"); std::path::Path::new(project_dir) .join("tests") .join(relative_path) }