mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
d7ca2aba2a
ensure subcommand exists, then include --help in its completion output
51 lines
880 B
Bash
51 lines
880 B
Bash
#!/usr/bin/env bats
|
|
|
|
load test_helper
|
|
|
|
create_command() {
|
|
bin="${RBENV_TEST_DIR}/bin"
|
|
mkdir -p "$bin"
|
|
echo "$2" > "${bin}/$1"
|
|
chmod +x "${bin}/$1"
|
|
}
|
|
|
|
@test "command with no completion support" {
|
|
create_command "rbenv-hello" "#!$BASH
|
|
echo hello"
|
|
run rbenv-completions hello
|
|
assert_success "--help"
|
|
}
|
|
|
|
@test "command with completion support" {
|
|
create_command "rbenv-hello" "#!$BASH
|
|
# Provide rbenv completions
|
|
if [[ \$1 = --complete ]]; then
|
|
echo hello
|
|
else
|
|
exit 1
|
|
fi"
|
|
run rbenv-completions hello
|
|
assert_success
|
|
assert_output <<OUT
|
|
--help
|
|
hello
|
|
OUT
|
|
}
|
|
|
|
@test "forwards extra arguments" {
|
|
create_command "rbenv-hello" "#!$BASH
|
|
# provide rbenv completions
|
|
if [[ \$1 = --complete ]]; then
|
|
shift 1
|
|
for arg; do echo \$arg; done
|
|
else
|
|
exit 1
|
|
fi"
|
|
run rbenv-completions hello happy world
|
|
assert_success
|
|
assert_output <<OUT
|
|
--help
|
|
happy
|
|
world
|
|
OUT
|
|
}
|