radicle: Fix `canonicalize_home` test on macos
Signed-off-by: Sebastian Martinez <me@sebastinez.dev>
This commit is contained in:
parent
c51585dbf9
commit
f9980f7205
|
|
@ -227,6 +227,7 @@ impl Home {
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use std::fs;
|
use std::fs;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
use super::Home;
|
use super::Home;
|
||||||
|
|
||||||
|
|
@ -242,7 +243,7 @@ mod test {
|
||||||
fs::create_dir_all(path.clone()).unwrap();
|
fs::create_dir_all(path.clone()).unwrap();
|
||||||
|
|
||||||
let last = tmp.path().components().last().unwrap();
|
let last = tmp.path().components().last().unwrap();
|
||||||
let home = Home::new(
|
let mut home = Home::new(
|
||||||
tmp.path()
|
tmp.path()
|
||||||
.join("..")
|
.join("..")
|
||||||
.join(last)
|
.join(last)
|
||||||
|
|
@ -250,6 +251,11 @@ mod test {
|
||||||
.join("Radicle"),
|
.join("Radicle"),
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
if cfg!(target_os = "macos") {
|
||||||
|
home.path =
|
||||||
|
Path::new("/").join(home.path.strip_prefix("/private").unwrap_or(&home.path))
|
||||||
|
};
|
||||||
|
|
||||||
assert_eq!(home.path, path);
|
assert_eq!(home.path, path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue