treeflow 0.2.1

CLI tool for simplified Git worktree management to speed up switching contexts when working collaboratively.
Documentation
#[cfg(test)]
mod utils;

#[cfg(test)]
mod config_tests {
    use crate::utils::treeflow_command::TreeflowCommand;
    use tempdir::TempDir;

    #[test]
    fn print_empty_configuration() {
        let config_dir = TempDir::new("config_dir").expect("Temp dir");
        TreeflowCommand::new(config_dir.into_path())
            .config()
            .cmd()
            .assert()
            .success()
            .stdout("work_types = []\nprojects = []\n");
    }
}