1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-17 15:53:45 -05:00

Sort versions semantically in rbenv versions

This commit is contained in:
prrrnd
2018-08-13 20:51:01 +02:00
committed by Mislav Marohnić
parent 0767d64344
commit d3d4606d2f
2 changed files with 20 additions and 3 deletions

View File

@@ -57,14 +57,16 @@ OUT
stub_system_ruby
create_version "1.8.7"
create_version "1.9.3"
create_version "2.0.0"
create_version "2.2.10"
create_version "2.2.3"
run rbenv-versions
assert_success
assert_output <<OUT
* system
1.8.7
1.9.3
2.0.0
2.2.3
2.2.10
OUT
}