rust/tests/versioncheck.rs

31 lines
1.2 KiB
Rust
Raw Normal View History

2018-10-06 18:18:06 +02:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
extern crate cargo_metadata;
2018-03-13 15:02:40 +01:00
extern crate semver;
use semver::VersionReq;
2016-05-30 12:47:04 +02:00
#[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");
2016-05-30 12:47:04 +02:00
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");
2018-05-22 10:21:42 +02:00
assert_eq!(clippy_lints_meta.packages[0].version, clippy_meta.packages[0].version);
2016-05-30 12:47:04 +02:00
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
);
2016-05-30 12:47:04 +02:00
return;
}
}
}