From 83429344ea4598e0a4e40474de88e254b43fb6e1 Mon Sep 17 00:00:00 2001 From: "Yamashita, Yuu" Date: Mon, 2 Apr 2018 01:52:42 +0000 Subject: [PATCH] Rewrite some tests for pyenv which was recently imported from rbenv --- test/shell.bats | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/shell.bats b/test/shell.bats index 48e6b129..0871065c 100644 --- a/test/shell.bats +++ b/test/shell.bats @@ -3,14 +3,14 @@ load test_helper @test "shell integration disabled" { - run rbenv shell - assert_failure "rbenv: shell integration not enabled. Run \`rbenv init' for instructions." + run pyenv shell + assert_failure "pyenv: shell integration not enabled. Run \`pyenv init' for instructions." } @test "shell integration enabled" { - eval "$(rbenv init -)" - run rbenv shell - assert_success "rbenv: no shell-specific version configured" + eval "$(pyenv init -)" + run pyenv shell + assert_success "pyenv: no shell-specific version configured" } @test "no shell version" {