From 292566371f23543998e55a61762448c51c238f44 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 6 Jun 2026 12:58:46 -0400 Subject: [PATCH] Added test --- src/parser/mod.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/parser/mod.rs b/src/parser/mod.rs index 9239aa8..0634f6e 100644 --- a/src/parser/mod.rs +++ b/src/parser/mod.rs @@ -166,3 +166,16 @@ impl NumberParser { parsed } } + +mod tests { + #[test] + fn test_file_dump() { + let filename = String::from("tests/numbers-0.txt"); + let file_exists = { + let path = std::path::Path::new(filename.as_str()); + path.exists() + }; + + assert_eq!(true, file_exists, "File does not exists {filename:?}"); + } +}