mirror of
https://github.com/casey/just.git
synced 2025-08-04 07:08:16 +00:00
9 lines
158 B
Rust
9 lines
158 B
Rust
use super::*;
|
|
|
|
#[test]
|
|
fn print_changelog() {
|
|
Test::new()
|
|
.args(["--changelog"])
|
|
.stdout(fs::read_to_string("CHANGELOG.md").unwrap())
|
|
.run();
|
|
}
|