1
1
mirror of https://github.com/casey/just.git synced 2024-11-23 11:04:09 +03:00
just/tests/changelog.rs

10 lines
159 B
Rust

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