mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
test(versioncheck): Fix version equality check
This commit is contained in:
parent
1fe0cf6f07
commit
53ce28a969
@ -1,17 +1,16 @@
|
||||
use semver::VersionReq;
|
||||
|
||||
#[test]
|
||||
fn check_that_clippy_lints_has_the_same_version_as_clippy() {
|
||||
let clippy_meta = cargo_metadata::metadata(None).expect("could not obtain cargo metadata");
|
||||
let clippy_meta = cargo_metadata::MetadataCommand::new()
|
||||
.exec()
|
||||
.expect("could not obtain cargo metadata");
|
||||
std::env::set_current_dir(std::env::current_dir().unwrap().join("clippy_lints")).unwrap();
|
||||
let clippy_lints_meta = cargo_metadata::metadata(None).expect("could not obtain cargo metadata");
|
||||
let clippy_lints_meta = cargo_metadata::MetadataCommand::new()
|
||||
.exec()
|
||||
.expect("could not obtain cargo metadata");
|
||||
assert_eq!(clippy_lints_meta.packages[0].version, clippy_meta.packages[0].version);
|
||||
for package in &clippy_meta.packages[0].dependencies {
|
||||
if package.name == "clippy_lints" {
|
||||
assert_eq!(
|
||||
VersionReq::parse(&clippy_lints_meta.packages[0].version).unwrap(),
|
||||
package.req
|
||||
);
|
||||
assert!(package.req.matches(&clippy_lints_meta.packages[0].version));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user