fix useflag parser

This commit is contained in:
John Turner
2025-10-24 21:36:06 -04:00
parent d75266f967
commit aa0d4edc57
2 changed files with 15 additions and 3 deletions

View File

@@ -280,4 +280,11 @@ mod test {
atom().check_finished(it).unwrap();
}
#[test]
fn test_usedep_with_underscore() {
let it = InputIter::new("foo/bar-1.0.0[use_dep]");
atom().check_finished(it).unwrap();
}
}