mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Fix test suite when no system Ruby exists
Some tests assumed that the `ruby` executable will be found in system PATH. Fixes #512, closes #514
This commit is contained in:
parent
59aca30267
commit
4f2f6f8575
1 changed files with 12 additions and 0 deletions
|
@ -11,7 +11,14 @@ setup() {
|
||||||
cd "$RBENV_TEST_DIR"
|
cd "$RBENV_TEST_DIR"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stub_system_ruby() {
|
||||||
|
local stub="${RBENV_TEST_DIR}/bin/ruby"
|
||||||
|
mkdir -p "$(dirname "$stub")"
|
||||||
|
touch "$stub" && chmod +x "$stub"
|
||||||
|
}
|
||||||
|
|
||||||
@test "no versions installed" {
|
@test "no versions installed" {
|
||||||
|
stub_system_ruby
|
||||||
assert [ ! -d "${RBENV_ROOT}/versions" ]
|
assert [ ! -d "${RBENV_ROOT}/versions" ]
|
||||||
run rbenv-versions
|
run rbenv-versions
|
||||||
assert_success "* system (set by ${RBENV_ROOT}/version)"
|
assert_success "* system (set by ${RBENV_ROOT}/version)"
|
||||||
|
@ -24,6 +31,7 @@ setup() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "single version installed" {
|
@test "single version installed" {
|
||||||
|
stub_system_ruby
|
||||||
create_version "1.9"
|
create_version "1.9"
|
||||||
run rbenv-versions
|
run rbenv-versions
|
||||||
assert_success
|
assert_success
|
||||||
|
@ -40,6 +48,7 @@ OUT
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "multiple versions" {
|
@test "multiple versions" {
|
||||||
|
stub_system_ruby
|
||||||
create_version "1.8.7"
|
create_version "1.8.7"
|
||||||
create_version "1.9.3"
|
create_version "1.9.3"
|
||||||
create_version "2.0.0"
|
create_version "2.0.0"
|
||||||
|
@ -54,6 +63,7 @@ OUT
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "indicates current version" {
|
@test "indicates current version" {
|
||||||
|
stub_system_ruby
|
||||||
create_version "1.9.3"
|
create_version "1.9.3"
|
||||||
create_version "2.0.0"
|
create_version "2.0.0"
|
||||||
RBENV_VERSION=1.9.3 run rbenv-versions
|
RBENV_VERSION=1.9.3 run rbenv-versions
|
||||||
|
@ -77,6 +87,7 @@ OUT
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "globally selected version" {
|
@test "globally selected version" {
|
||||||
|
stub_system_ruby
|
||||||
create_version "1.9.3"
|
create_version "1.9.3"
|
||||||
create_version "2.0.0"
|
create_version "2.0.0"
|
||||||
cat > "${RBENV_ROOT}/version" <<<"1.9.3"
|
cat > "${RBENV_ROOT}/version" <<<"1.9.3"
|
||||||
|
@ -90,6 +101,7 @@ OUT
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "per-project version" {
|
@test "per-project version" {
|
||||||
|
stub_system_ruby
|
||||||
create_version "1.9.3"
|
create_version "1.9.3"
|
||||||
create_version "2.0.0"
|
create_version "2.0.0"
|
||||||
cat > ".ruby-version" <<<"1.9.3"
|
cat > ".ruby-version" <<<"1.9.3"
|
||||||
|
|
Loading…
Reference in a new issue