test: improve input & map_builder test coverage

This commit is contained in:
Ryan Walters
2025-09-05 20:31:09 -05:00
parent f1927cc67e
commit d68d76c854
6 changed files with 379 additions and 76 deletions

View File

@@ -20,6 +20,6 @@ fn all_asset_paths_exist() {
fn asset_paths_are_non_empty() {
for asset in Asset::iter() {
let path = asset.path();
assert!(!path.is_empty(), "Asset path for {:?} should not be empty", asset);
assert_that(&path.is_empty()).is_false();
}
}