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

fix exec fails for invalid version

This commit is contained in:
Mislav Marohnić
2013-04-01 03:01:37 +02:00
parent 4b6ab0389b
commit 400fe31061
2 changed files with 8 additions and 1 deletions

View File

@@ -9,6 +9,12 @@ create_executable() {
chmod +x "${bin}/$1"
}
@test "fails with invalid version" {
export RBENV_VERSION="2.0"
run rbenv-exec ruby -v
assert_failure "rbenv: version \`2.0' is not installed"
}
@test "supports hook path with spaces" {
hook_path="${RBENV_TEST_DIR}/custom stuff/rbenv hooks"
mkdir -p "${hook_path}/exec"