Add explicit shebang to executable for testing

This commit is contained in:
Yamashita, Yuu 2016-08-03 01:33:35 +00:00
parent 8eefa41a4d
commit 83e874a165

View file

@ -26,7 +26,9 @@ load test_helper
@test "prefix for system in /" {
mkdir -p "${BATS_TEST_DIRNAME}/libexec"
echo "echo /bin/ruby" >"${BATS_TEST_DIRNAME}/libexec/rbenv-which"
{ echo "#!/bin/sh"
echo "echo /bin/ruby"
} >"${BATS_TEST_DIRNAME}/libexec/rbenv-which"
chmod +x "${BATS_TEST_DIRNAME}/libexec/rbenv-which"
RBENV_VERSION="system" run rbenv-prefix
assert_success "/"