Updated test
Rust Build / Rustfmt (pull_request) Successful in 32s
Rust Build / Clippy (pull_request) Successful in 31s
Rust Build / build (pull_request) Successful in 45s
Rust Build / Test Suite (pull_request) Failing after 50s
Rust Build / Check (pull_request) Successful in 26s

This commit is contained in:
2026-06-06 13:10:51 -04:00
parent 292566371f
commit b71c571c38
3 changed files with 288 additions and 0 deletions
+10
View File
@@ -177,5 +177,15 @@ mod tests {
};
assert_eq!(true, file_exists, "File does not exists {filename:?}");
let prsr = super::NumberParser { filepath: filename };
match async_std::task::block_on(prsr.file_dump()) {
Ok(contacts) => {}
Err(err) => {}
};
}
#[test]
fn test_save_file() {}
}