Compare commits

..

No commits in common. "odin" and "simple-enum" have entirely different histories.

View File

@ -267,16 +267,6 @@ mod tests {
) )
} }
#[test]
fn to_string() {
let s = "3.14.0_beta2-riscv64";
let version: Version = s.parse().unwrap();
assert_eq!(s, version.to_string());
let s = "3.14.6_git_r2d2xxx.1705881493-x86_64";
let version: Version = s.parse().unwrap();
assert_eq!(s, version.to_string());
}
#[test] #[test]
fn cmp() { fn cmp() {
let astr = "3.14.0-x86_64"; let astr = "3.14.0-x86_64";