1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test_readline.rb: skip teardown failure

https://ci.appveyor.com/project/ruby/ruby/build/9271/job/e88212s136mr0dgr

I'll take a look at MSP-Greg's patch on readline later.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2018-08-15 03:03:18 +00:00
parent 5a149052fe
commit 4940bbc791

View file

@ -21,6 +21,9 @@ class TestReadline < Test::Unit::TestCase
end
def teardown
if ENV.key?('APPVEYOR') && /mingw/ =~ RUBY_PLATFORM
return
end
ENV[INPUTRC] = @inputrc
Readline.instance_variable_set("@completion_proc", nil)
begin