clap/tests/version-numbers.rs
2020-02-03 12:01:36 -05:00

11 lines
249 B
Rust

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");
}