1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-08 11:33:49 -05:00

Fix not showing symlink contents for unselected versions in pyenv versions (#2675)

This commit is contained in:
native-api
2023-04-08 01:12:09 +03:00
committed by GitHub
parent 5a8dbcf143
commit 20189ff06f
2 changed files with 6 additions and 4 deletions

View File

@@ -238,11 +238,13 @@ OUT
@test "non-bare output shows symlink contents" {
create_version "1.9.0"
create_alias "link" "foo/bar"
create_alias "link" "1.9.0"
run pyenv-versions
assert_success <<OUT
assert_success
assert_output <<OUT
* system (set by ${PYENV_ROOT}/version)
1.9.0
link --> foo/bar
link --> 1.9.0
OUT
}