Skip to content

Commit

Permalink
test(versioncheck): Use .no_deps()
Browse files Browse the repository at this point in the history
  • Loading branch information
sorin-davidoi committed Jan 25, 2019
1 parent 53ce28a commit dc3bee7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/versioncheck.rs
@@ -1,10 +1,12 @@
#[test]
fn check_that_clippy_lints_has_the_same_version_as_clippy() {
let clippy_meta = cargo_metadata::MetadataCommand::new()
.no_deps()
.exec()
.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::MetadataCommand::new()
.no_deps()
.exec()
.expect("could not obtain cargo metadata");
assert_eq!(clippy_lints_meta.packages[0].version, clippy_meta.packages[0].version);
Expand Down

0 comments on commit dc3bee7

Please sign in to comment.