mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
31 lines
756 B
Rust
31 lines
756 B
Rust
use std::fmt;
|
|
use std::path::{PathBuf, Path};
|
|
|
|
use hamcrest::{Matcher, MatchResult, existing_file};
|
|
use support::paths;
|
|
|
|
pub use self::InstalledExe as has_installed_exe;
|
|
|
|
pub fn cargo_home() -> PathBuf {
|
|
paths::home().join(".cargo")
|
|
}
|
|
|
|
pub struct InstalledExe(pub &'static str);
|
|
|
|
pub fn exe(name: &str) -> String {
|
|
if cfg!(windows) {format!("{}.exe", name)} else {name.to_string()}
|
|
}
|
|
|
|
impl<P: AsRef<Path>> Matcher<P> for InstalledExe {
|
|
fn matches(&self, path: P) -> MatchResult {
|
|
let path = path.as_ref().join("bin").join(exe(self.0));
|
|
existing_file().matches(&path)
|
|
}
|
|
}
|
|
|
|
impl fmt::Display for InstalledExe {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(f, "installed exe `{}`", self.0)
|
|
}
|
|
}
|