mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
17 lines
707 B
Rust
17 lines
707 B
Rust
|
extern crate clippy_lints;
|
||
|
use clippy_lints::utils::cargo;
|
||
|
|
||
|
#[test]
|
||
|
fn check_that_clippy_lints_has_the_same_version_as_clippy() {
|
||
|
let clippy_meta = cargo::metadata().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().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!(clippy_lints_meta.packages[0].version, package.req[1..]);
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
}
|