lox-test-utils 0.1.0-alpha.0

Testing utilities for the Lox ecosystem
Documentation
1
2
3
4
5
6
use std::path::PathBuf;

/// Returns a [PathBuf] to the test fixture directory.
pub fn data_dir() -> PathBuf {
    PathBuf::from(format!("{}/../../data", env!("CARGO_MANIFEST_DIR")))
}