]> git.lizzy.rs Git - rust.git/blob - tests/versioncheck.rs
Update .stderr file
[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
11 extern crate cargo_metadata;
12 extern crate semver;
13 use semver::VersionReq;
14
15 #[test]
16 fn check_that_clippy_lints_has_the_same_version_as_clippy() {
17     let clippy_meta = cargo_metadata::metadata(None).expect("could not obtain cargo metadata");
18     std::env::set_current_dir(std::env::current_dir().unwrap().join("clippy_lints")).unwrap();
19     let clippy_lints_meta = cargo_metadata::metadata(None).expect("could not obtain cargo metadata");
20     assert_eq!(clippy_lints_meta.packages[0].version, clippy_meta.packages[0].version);
21     for package in &clippy_meta.packages[0].dependencies {
22         if package.name == "clippy_lints" {
23             assert_eq!(
24                 VersionReq::parse(&clippy_lints_meta.packages[0].version).unwrap(),
25                 package.req
26             );
27             return;
28         }
29     }
30 }