fabro/lib/apps/fabro-cli/tests/it/cmd/pr.rs
2026-07-23 17:59:34 -04:00

34 lines
1.2 KiB
Rust

use fabro_test::{fabro_snapshot, test_context};
#[test]
fn help() {
let context = test_context!();
let mut cmd = context.pr();
cmd.arg("--help");
fabro_snapshot!(context.filters(), cmd, @"
success: true
exit_code: 0
----- stdout -----
Pull request operations
Usage: fabro pr [OPTIONS] <COMMAND>
Commands:
create Create a pull request from a completed run
link Link or replace the GitHub pull request associated with a run
unlink Unlink the pull request associated with a run
view View pull request details
merge Merge a pull request
close Close a pull request
help Print this message or the help of the given subcommand(s)
Options:
--json Output as JSON [env: FABRO_JSON=]
--debug Enable DEBUG-level logging (default is INFO) [env: FABRO_DEBUG=]
--no-upgrade-check Disable automatic upgrade check [env: FABRO_NO_UPGRADE_CHECK=true]
--quiet Suppress non-essential output [env: FABRO_QUIET=]
--verbose Enable verbose output [env: FABRO_VERBOSE=]
-h, --help Print help
----- stderr -----
");
}