Breaking out some portions for integration testing.

This commit is contained in:
Micheal Smith
2025-11-10 22:20:09 -06:00
parent 3af95235e6
commit 2da7cc4450
4 changed files with 31 additions and 44 deletions

View File

@@ -1,19 +0,0 @@
use color_eyre::Result;
use std::path::{Path, PathBuf};
#[derive(Clone, Debug)]
pub struct Root {
path: PathBuf,
}
impl Root {
pub fn new(path: impl AsRef<Path>) -> Self {
Root {
path: path.as_ref().to_owned(),
}
}
pub fn run_command(_cmd_string: impl AsRef<str>) -> Result<()> {
todo!();
}
}