roc/compiler/load_internal/tests/helpers/mod.rs
2022-03-23 15:18:22 +01:00

7 lines
151 B
Rust

extern crate bumpalo;
use std::path::{Path, PathBuf};
pub fn fixtures_dir<'a>() -> PathBuf {
Path::new("tests").join("fixtures").join("build")
}