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

Initialize Reline callbacks when test suit starts

This commit is contained in:
aycabta 2020-05-13 07:25:57 +09:00
parent 68a7c8ad57
commit 03a492fe45

View file

@ -7,6 +7,12 @@ class Reline::Test < Reline::TestCase
end
def setup
Reline.output_modifier_proc = nil
Reline.completion_proc = nil
Reline.prompt_proc = nil
Reline.auto_indent_proc = nil
Reline.pre_input_hook = nil
Reline.dig_perfect_match_proc = nil
end
def teardown