roc/compiler/load_internal/tests/helpers/mod.rs
2022-05-10 15:21:48 -04:00

7 lines
147 B
Rust

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