mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
test: Rely on release process for version sync
When we switch to `cargo-release`, it will validate that the auto-update was performed. No reason to have an extra dependency during development.
This commit is contained in:
parent
b7d6ec67d9
commit
2288f55cc1
4 changed files with 0 additions and 19 deletions
|
@ -119,7 +119,6 @@ backtrace = { version = "0.3", optional = true }
|
|||
[dev-dependencies]
|
||||
regex = "1.0"
|
||||
lazy_static = "1"
|
||||
version-sync = "0.9"
|
||||
criterion = "0.3.2"
|
||||
# Cutting out `filesystem` feature
|
||||
trycmd = { version = "0.8.0", default-features = false, features = ["color-auto", "diff", "examples"] }
|
||||
|
|
|
@ -35,7 +35,6 @@ clap = { path = "../", version = "=3.0.0-beta.5", default-features = false, feat
|
|||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "1.0"
|
||||
version-sync = "0.9"
|
||||
clap = { path = "../", version = "=3.0.0-beta.5", default-features = false, features = ["std", "derive"] }
|
||||
|
||||
[features]
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
use version_sync::assert_html_root_url_updated;
|
||||
|
||||
#[test]
|
||||
fn test_html_root_url() {
|
||||
assert_html_root_url_updated!("src/lib.rs");
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
use version_sync::{assert_html_root_url_updated, assert_markdown_deps_updated};
|
||||
|
||||
#[test]
|
||||
fn test_readme_deps() {
|
||||
assert_markdown_deps_updated!("README.md");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_html_root_url() {
|
||||
assert_html_root_url_updated!("src/lib.rs");
|
||||
}
|
Loading…
Reference in a new issue