knope 0.22.3

A command line tool for automating common development tasks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::helpers::{
    GitCommand::{Commit, Tag},
    TestCase,
};

/// Verify that Release will operate on all defined packages independently
#[test]
fn multiple_packages() {
    TestCase::new(file!())
        .git(&[
            Commit("feat: Existing feature"),
            Tag("first/v1.2.3"),
            Tag("second/v0.4.6"),
            Commit("feat!: New breaking feature"),
        ])
        .run("release --dry-run");
}