Prefer local over global version file

This commit is contained in:
Richie Thomas 2022-10-15 11:11:48 -05:00
parent 41580b69db
commit 85f304ef3b

View file

@ -36,3 +36,12 @@ setup() {
run rbenv-version
assert_success "1.9.3 (set by ${RBENV_ROOT}/version)"
}
@test "prefer local over global file" {
create_version "1.9.3"
create_version "3.0.0"
cat > ".ruby-version" <<<"1.9.3"
cat > "${RBENV_ROOT}/version" <<<"3.0.0"
run rbenv-version
assert_success "1.9.3 (set by ${PWD}/.ruby-version)"
}