#[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");
}
}