summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-08 19:45:35 -0400
committerpommicket <pommicket@gmail.com>2025-09-08 19:45:35 -0400
commit716c3e56672c7abefe4f8dc953766e196e04751e (patch)
treeb6c09e9b48ea14b69a8fb084404d561589e6e21d /src
parente588e013bed4e5c30aa5f605cc0973976e542258 (diff)
Better output for cargo test -- --nocapture
Diffstat (limited to 'src')
-rw-r--r--src/tests/parsing.rs1
1 files changed, 1 insertions, 0 deletions
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<dyn std::error::Error>> {
+ 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)