just/tests/changelog.rs
2023-01-04 06:31:56 +00:00

10 lines
158 B
Rust

use super::*;
#[test]
fn print_changelog() {
Test::new()
.args(["--changelog"])
.stdout(fs::read_to_string("CHANGELOG.md").unwrap())
.run();
}