pyenv/test/prefix.bats
Mislav Marohnić 1e1c9cb0dc Fix emulating the scenario where system Ruby is missing on OpenBSD
On other systems, we expected to find system Ruby in `/usr/bin`, but in
OpenBSD 5.4 it will be found in `/usr/local/bin`.

This replaces the limited USRBIN_ALT hack with a more generic
`path_without` function that will ensure that the given executable is
not present in the resulting PATH even if it's found in multiple
system paths.
2014-01-02 22:30:21 +01:00

30 lines
792 B
Bash

#!/usr/bin/env bats
load test_helper
@test "prefix" {
mkdir -p "${PYENV_TEST_DIR}/myproject"
cd "${PYENV_TEST_DIR}/myproject"
echo "1.2.3" > .python-version
mkdir -p "${PYENV_ROOT}/versions/1.2.3"
run pyenv-prefix
assert_success "${PYENV_ROOT}/versions/1.2.3"
}
@test "prefix for invalid version" {
PYENV_VERSION="1.2.3" run pyenv-prefix
assert_failure "pyenv: version \`1.2.3' not installed"
}
@test "prefix for system" {
mkdir -p "${PYENV_TEST_DIR}/bin"
touch "${PYENV_TEST_DIR}/bin/python"
chmod +x "${PYENV_TEST_DIR}/bin/python"
PYENV_VERSION="system" run pyenv-prefix
assert_success "$PYENV_TEST_DIR"
}
@test "prefix for invalid system" {
PATH="$(path_without python)" run pyenv-prefix system
assert_failure "pyenv: system version not found in PATH"
}