1
Fork 0
mirror of https://github.com/Steffo99/micronfig.git synced 2024-11-26 01:54:18 +00:00
micronfig/micronfig_macros/tests/sources/parse_single_pathbuf.rs

9 lines
187 B
Rust
Raw Normal View History

micronfig::config! {
GARASAUTO: String > std::path::PathBuf,
}
fn main() {
std::env::set_var("GARASAUTO", "./garas");
assert_eq!(GARASAUTO(), &std::path::PathBuf::from("./garas"));
}