summaryrefslogtreecommitdiffstats
path: root/third_party/rust/serde_with/tests/version_numbers.rs
blob: fa24ed060afb9d861ed59feb5dca6491f866a62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extern crate version_sync;

use version_sync::{
    assert_contains_regex, assert_html_root_url_updated, assert_markdown_deps_updated,
};

#[test]
fn test_readme_deps() {
    assert_markdown_deps_updated!("README.md");
}

#[test]
fn test_readme_deps_in_lib() {
    assert_contains_regex!("src/lib.rs", r#"^//! version = "{version}""#);
}

#[test]
fn test_html_root_url() {
    assert_html_root_url_updated!("src/lib.rs");
}