10 lines
167 B
Rust
10 lines
167 B
Rust
use crate::common::*;
|
|
|
|
#[test]
|
|
fn print_changelog() {
|
|
Test::new()
|
|
.args(&["--changelog"])
|
|
.stdout(fs::read_to_string("CHANGELOG.md").unwrap())
|
|
.run();
|
|
}
|