use super::*;
#[test]
#[cfg_attr(coverage_nightly, coverage(off))]
fn test_workspace_module_dir_ends_with_debug() {
let dir = workspace_module_dir();
assert!(
dir.ends_with("debug"),
"Expected path ending with debug, got: {}",
dir.display()
);
}
#[test]
fn test_workspace_module_dir_is_absolute() {
let dir = workspace_module_dir();
assert!(dir.is_absolute(), "Expected absolute path, got: {}", dir.display());
}
#[test]
#[cfg_attr(coverage_nightly, coverage(off))]
fn test_binary_path_ends_with_reovim() {
let path = binary_path();
assert!(
path.file_name().is_some_and(|n| n == "reovim"),
"Expected path ending with reovim, got: {}",
path.display()
);
}
#[test]
#[cfg_attr(coverage_nightly, coverage(off))]
fn test_binary_and_module_share_workspace_root() {
let binary = binary_path();
let modules = workspace_module_dir();
let find_workspace = |p: &Path| {
p.ancestors()
.find(|a| a.join("Cargo.toml").exists())
.map(Path::to_path_buf)
};
let binary_ws = find_workspace(&binary);
let module_ws = find_workspace(&modules);
assert_eq!(
binary_ws, module_ws,
"Binary workspace ({binary_ws:?}) should equal module workspace ({module_ws:?})"
);
}