]> git.lizzy.rs Git - rust.git/blob - tests/versioncheck.rs
Merge pull request #3465 from flip1995/rustfmt
[rust.git] / tests / versioncheck.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 extern crate cargo_metadata;
11 extern crate semver;
12 use semver::VersionReq;
13
14 #[test]
15 fn check_that_clippy_lints_has_the_same_version_as_clippy() {
16     let clippy_meta = cargo_metadata::metadata(None).expect("could not obtain cargo metadata");
17     std::env::set_current_dir(std::env::current_dir().unwrap().join("clippy_lints")).unwrap();
18     let clippy_lints_meta = cargo_metadata::metadata(None).expect("could not obtain cargo metadata");
19     assert_eq!(clippy_lints_meta.packages[0].version, clippy_meta.packages[0].version);
20     for package in &clippy_meta.packages[0].dependencies {
21         if package.name == "clippy_lints" {
22             assert_eq!(
23                 VersionReq::parse(&clippy_lints_meta.packages[0].version).unwrap(),
24                 package.req
25             );
26             return;
27         }
28     }
29 }