Initial commit: git-issue-commit CLI tool
Some checks failed
CI / test (push) Has been cancelled
CI / release (push) Has been cancelled

This commit is contained in:
2026-01-29 19:59:31 +00:00
parent 4e78739600
commit 3e2f0ca26c

View File

@@ -0,0 +1,18 @@
#[cfg(test)]
mod integration_tests {
use assert_cmd::Command;
#[test]
fn test_cli_help() {
let mut cmd = Command::cargo_bin("git-issue-commit").unwrap();
cmd.arg("--help");
cmd.assert().success();
}
#[test]
fn test_cli_version() {
let mut cmd = Command::cargo_bin("git-issue-commit").unwrap();
cmd.arg("--version");
cmd.assert().success();
}
}