mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
1a0be6f0ad
It doesn't try to chdir into RBENV_ROOT anymore because that might be a location of an unrelated rbenv install that might have a different version than the current one that is installed e.g. via a package manager such as Homebrew. Now just tries the repo where the source files (`libexec/*`) are located, and if that isn't a valid rbenv repo, bail out early.
55 lines
1.1 KiB
Bash
55 lines
1.1 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load test_helper
|
|
|
|
export GIT_DIR="${RBENV_TEST_DIR}/.git"
|
|
|
|
setup() {
|
|
mkdir -p "$HOME"
|
|
git config --global user.name "Tester"
|
|
git config --global user.email "tester@test.local"
|
|
cd "$RBENV_TEST_DIR"
|
|
}
|
|
|
|
git_commit() {
|
|
git commit --quiet --allow-empty -m "empty"
|
|
}
|
|
|
|
@test "default version" {
|
|
assert [ ! -e "$RBENV_ROOT" ]
|
|
run rbenv---version
|
|
assert_success
|
|
[[ $output == "rbenv "?.?.? ]]
|
|
}
|
|
|
|
@test "doesn't read version from non-rbenv repo" {
|
|
git init
|
|
git remote add origin https://github.com/homebrew/homebrew.git
|
|
git_commit
|
|
git tag v1.0
|
|
|
|
run rbenv---version
|
|
assert_success
|
|
[[ $output == "rbenv "?.?.? ]]
|
|
}
|
|
|
|
@test "reads version from git repo" {
|
|
git init
|
|
git remote add origin https://github.com/rbenv/rbenv.git
|
|
git_commit
|
|
git tag v0.4.1
|
|
git_commit
|
|
git_commit
|
|
|
|
run rbenv---version
|
|
assert_success "rbenv 0.4.1-2-g$(git rev-parse --short HEAD)"
|
|
}
|
|
|
|
@test "prints default version if no tags in git repo" {
|
|
git init
|
|
git remote add origin https://github.com/rbenv/rbenv.git
|
|
git_commit
|
|
|
|
run rbenv---version
|
|
[[ $output == "rbenv "?.?.? ]]
|
|
}
|