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"); }