remove recipe debugging
This commit is contained in:
parent
f2ad60d8da
commit
196e9c17d8
1 changed files with 0 additions and 2 deletions
|
|
@ -159,11 +159,9 @@ mod test {
|
||||||
];
|
];
|
||||||
|
|
||||||
for (recipe_filename, is_leaf) in recipes.iter() {
|
for (recipe_filename, is_leaf) in recipes.iter() {
|
||||||
println!("{recipe_filename}");
|
|
||||||
let recipe_path = std::path::PathBuf::from(recipe_filename);
|
let recipe_path = std::path::PathBuf::from(recipe_filename);
|
||||||
let recipe = Recipe::from_file(&recipe_path).unwrap();
|
let recipe = Recipe::from_file(&recipe_path).unwrap();
|
||||||
let result = recipe.is_vitamin();
|
let result = recipe.is_vitamin();
|
||||||
println!("recipe {:#?}, leaf={}", recipe_filename, result);
|
|
||||||
assert_eq!(result, *is_leaf);
|
assert_eq!(result, *is_leaf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue