use clap::Subcommand;
use eyre::Result;
use crate::env;
mod clear;
#[derive(Debug, clap::Args)]
#[clap(verbatim_doc_comment)]
pub struct Cache {
#[clap(subcommand)]
command: Option<Commands>,
}
#[derive(Debug, Subcommand)]
enum Commands {
Clear(clear::CacheClear),
}
impl Commands {
pub fn run(self) -> Result<()> {
match self {
Self::Clear(cmd) => cmd.run(),
}
}
}
impl Cache {
pub fn run(self) -> Result<()> {
match self.command {
Some(cmd) => cmd.run(),
None => {
miseprintln!("{}", env::MISE_CACHE_DIR.display());
Ok(())
}
}
}
}
#[cfg(test)]
mod tests {
use crate::env;
#[test]
fn test_cache() {
let stdout = assert_cli!("cache");
assert_str_eq!(stdout.trim(), env::MISE_CACHE_DIR.display().to_string());
}
}