16 lines
296 B
Rust
16 lines
296 B
Rust
|
|
#[cfg(test)]
|
||
|
|
mod tests {
|
||
|
|
use crate::helpers;
|
||
|
|
|
||
|
|
#[test]
|
||
|
|
fn test_data_dir_path() {
|
||
|
|
let dir = helpers::get_orchestrator_data_dir();
|
||
|
|
assert!(dir.to_string_lossy().contains("orchestrator/data"));
|
||
|
|
}
|
||
|
|
|
||
|
|
#[test]
|
||
|
|
fn test_placeholder() {
|
||
|
|
assert!(true);
|
||
|
|
}
|
||
|
|
}
|