just/tests/changelog.rs

10 lines
158 B
Rust
Raw Normal View History

use super::*;
2021-07-31 13:53:27 -07:00
#[test]
fn print_changelog() {
Test::new()
2023-01-03 22:31:56 -08:00
.args(["--changelog"])
2021-07-31 13:53:27 -07:00
.stdout(fs::read_to_string("CHANGELOG.md").unwrap())
.run();
}