just 1.8.0

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

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