knope 0.22.4

A command line tool for automating common development tasks
1
2
3
4
5
6
7
8
use crate::helpers::{GitCommand::Commit, TestCase};

#[test]
fn replace_version() {
    TestCase::new(file!())
        .git(&[Commit("Initial")])
        .run("replace-version --override-version=2.0.0");
}