Files
tubestation/third_party/rust/textwrap/tests/version-numbers.rs
Ben Dean-Kawamura 10e1ae132d Bug 1888683 - Checking in automated code changes. r=janerik,supply-chain-reviewers,glandium
This is the result of running `mach vendor rust`, `mach cargo vet prune` and `mach uniffi generate`

Depends on D206130

Differential Revision: https://phabricator.services.mozilla.com/D206131
2024-04-10 17:23:01 +00:00

23 lines
492 B
Rust

#[test]
fn test_readme_deps() {
version_sync::assert_markdown_deps_updated!("README.md");
}
#[test]
fn test_changelog() {
version_sync::assert_contains_regex!(
"CHANGELOG.md",
r"^## Version {version} \(20\d\d-\d\d-\d\d\)"
);
}
#[test]
fn test_html_root_url() {
version_sync::assert_html_root_url_updated!("src/lib.rs");
}
#[test]
fn test_dependency_graph() {
version_sync::assert_contains_regex!("src/lib.rs", "master/images/textwrap-{version}.svg");
}