1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-13 05:43:53 -05:00

fix iterating through paths that have spaces in them

Fixes #344, #196
This commit is contained in:
Mislav Marohnić
2013-02-24 14:52:50 +01:00
parent 382db59cd0
commit baf7656d2f
8 changed files with 51 additions and 6 deletions

View File

@@ -19,6 +19,18 @@ load test_helper
assert_line "shell"
}
@test "commands in path with spaces" {
path="${RBENV_TEST_DIR}/my commands"
cmd="${path}/rbenv-sh-hello"
mkdir -p "$path"
touch "$cmd"
chmod +x "$cmd"
PATH="${path}:$PATH" run rbenv-commands --sh
assert_success
assert_line "hello"
}
@test "commands --no-sh" {
run rbenv-commands --no-sh
assert_success