2016-05-30 10:47:04 +00:00
|
|
|
#[test]
|
|
|
|
fn check_that_clippy_lints_has_the_same_version_as_clippy() {
|
2019-01-25 19:39:45 +00:00
|
|
|
let clippy_meta = cargo_metadata::MetadataCommand::new()
|
2019-01-25 20:28:09 +00:00
|
|
|
.no_deps()
|
2019-01-25 19:39:45 +00:00
|
|
|
.exec()
|
|
|
|
.expect("could not obtain cargo metadata");
|
2016-05-30 10:47:04 +00:00
|
|
|
std::env::set_current_dir(std::env::current_dir().unwrap().join("clippy_lints")).unwrap();
|
2019-01-25 19:39:45 +00:00
|
|
|
let clippy_lints_meta = cargo_metadata::MetadataCommand::new()
|
2019-01-25 20:28:09 +00:00
|
|
|
.no_deps()
|
2019-01-25 19:39:45 +00:00
|
|
|
.exec()
|
|
|
|
.expect("could not obtain cargo metadata");
|
2018-05-22 08:21:42 +00:00
|
|
|
assert_eq!(clippy_lints_meta.packages[0].version, clippy_meta.packages[0].version);
|
2016-05-30 10:47:04 +00:00
|
|
|
for package in &clippy_meta.packages[0].dependencies {
|
|
|
|
if package.name == "clippy_lints" {
|
2019-01-25 19:39:45 +00:00
|
|
|
assert!(package.req.matches(&clippy_lints_meta.packages[0].version));
|
2016-05-30 10:47:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|