use crate::helpers::{
GitCommand::{Commit, Tag},
TestCase,
};
#[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");
}