roc/compiler/load/tests/helpers/mod.rs
2021-02-08 23:40:50 +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")
}