Remove unused ruby activate script

This commit is contained in:
Anthony Sottile 2020-01-12 11:19:02 -08:00
parent 5d767bbc49
commit 5e52a657df
2 changed files with 7 additions and 42 deletions

View file

@ -1,7 +1,6 @@
import os.path
import shlex
from pre_commit.languages.ruby import _install_rbenv
from pre_commit.languages import ruby
from pre_commit.prefix import Prefix
from pre_commit.util import cmd_output
from testing.util import xfailif_windows_no_ruby
@ -10,31 +9,20 @@ from testing.util import xfailif_windows_no_ruby
@xfailif_windows_no_ruby
def test_install_rbenv(tempdir_factory):
prefix = Prefix(tempdir_factory.get())
_install_rbenv(prefix)
ruby._install_rbenv(prefix)
# Should have created rbenv directory
assert os.path.exists(prefix.path('rbenv-default'))
# We should have created our `activate` script
activate_path = prefix.path('rbenv-default', 'bin', 'activate')
assert os.path.exists(activate_path)
# Should be able to activate using our script and access rbenv
cmd_output(
'bash', '-c',
'. {} && rbenv --help'.format(
shlex.quote(prefix.path('rbenv-default', 'bin', 'activate')),
),
)
with ruby.in_env(prefix, 'default'):
cmd_output('rbenv', '--help')
@xfailif_windows_no_ruby
def test_install_rbenv_with_version(tempdir_factory):
prefix = Prefix(tempdir_factory.get())
_install_rbenv(prefix, version='1.9.3p547')
ruby._install_rbenv(prefix, version='1.9.3p547')
# Should be able to activate and use rbenv install
cmd_output(
'bash', '-c',
'. {} && rbenv install --help'.format(
shlex.quote(prefix.path('rbenv-1.9.3p547', 'bin', 'activate')),
),
)
with ruby.in_env(prefix, '1.9.3p547'):
cmd_output('rbenv', 'install', '--help')