knope 0.22.2

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

#[test]
fn test() {
    TestCase::new(file!())
        .git(&[Commit("Initial commit"), Tag("v1.2.3")])
        .run("bump");
}