roc/compiler/load_internal/tests/helpers/mod.rs
2022-05-11 10:47:55 -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")
}