From bbf8cb4a954abfa0900307d32bdeeef5801159c0 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 13 Oct 2014 21:15:22 +0200 Subject: [PATCH] Add test for PYENV_VERSION=3.4:2.7 --- test/which.bats | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/which.bats b/test/which.bats index 6d80eea8..8816cb10 100644 --- a/test/which.bats +++ b/test/which.bats @@ -21,6 +21,9 @@ create_executable() { PYENV_VERSION=3.4 run pyenv-which py.test assert_success "${PYENV_ROOT}/versions/3.4/bin/py.test" + + PYENV_VERSION=3.4:2.7 run pyenv-which py.test + assert_success "${PYENV_ROOT}/versions/3.4/bin/py.test" } @test "searches PATH for system version" {