Add tests #5

Merged
phoenix merged 8 commits from add_tests into v1.x 2026-06-06 14:03:43 -04:00
Showing only changes of commit 292566371f - Show all commits
+13
View File
@@ -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:?}");
}
}