mirror of
https://github.com/casey/just.git
synced 2024-11-22 18:34:06 +03:00
10 lines
158 B
Rust
10 lines
158 B
Rust
use super::*;
|
|
|
|
#[test]
|
|
fn print_changelog() {
|
|
Test::new()
|
|
.args(["--changelog"])
|
|
.stdout(fs::read_to_string("CHANGELOG.md").unwrap())
|
|
.run();
|
|
}
|