From 716c3e56672c7abefe4f8dc953766e196e04751e Mon Sep 17 00:00:00 2001 From: pommicket Date: Mon, 8 Sep 2025 19:45:35 -0400 Subject: Better output for cargo test -- --nocapture --- src/tests/parsing.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/parsing.rs b/src/tests/parsing.rs index 2e701ed..eb98a04 100644 --- a/src/tests/parsing.rs +++ b/src/tests/parsing.rs @@ -3,6 +3,7 @@ use crate::Configuration; static TEST_DIR: &str = "../tests/parsing"; fn single_test(flat_name: &str, complex_name: &str) -> Result<(), Box> { + println!("Running test {complex_name}..."); let config1 = Configuration::load_path(format!("{TEST_DIR}/{flat_name}"))?; let config2 = Configuration::load_path(format!("{TEST_DIR}/{complex_name}"))?; super::check_configs_equal(&config1, &config2) -- cgit v1.2.3