1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-18 00:03:45 -05:00

Import tests from rbenv with sed -e s/rbenv/pyenv/g

This commit is contained in:
Yamashita Yuu
2014-01-03 01:48:22 +09:00
parent f538169992
commit 0965577b93
26 changed files with 1574 additions and 0 deletions

31
test/global.bats Normal file
View File

@@ -0,0 +1,31 @@
#!/usr/bin/env bats
load test_helper
@test "default" {
run pyenv global
assert_success
assert_output "system"
}
@test "read PYENV_ROOT/version" {
mkdir -p "$PYENV_ROOT"
echo "1.2.3" > "$PYENV_ROOT/version"
run pyenv-global
assert_success
assert_output "1.2.3"
}
@test "set PYENV_ROOT/version" {
mkdir -p "$PYENV_ROOT/versions/1.2.3"
run pyenv-global "1.2.3"
assert_success
run pyenv global
assert_success "1.2.3"
}
@test "fail setting invalid PYENV_ROOT/version" {
mkdir -p "$PYENV_ROOT"
run pyenv-global "1.2.3"
assert_failure "pyenv: version \`1.2.3' not installed"
}