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

[ruby/reline] Add a test for full-width scrollbar

cff83e68f8
This commit is contained in:
aycabta 2021-10-09 23:07:18 +09:00 committed by git
parent 9cb7ba2f21
commit bf1f6a696f
2 changed files with 19 additions and 0 deletions

View file

@ -74,8 +74,14 @@ opt.on('--dialog VAL') { |v|
if v.include?('scrollbar')
scrollbar = true
end
if v.include?('alt-scrollbar')
scrollbar = true
end
Reline::DialogRenderInfo.new(pos: cursor_pos, contents: contents, height: height, scrollbar: scrollbar)
})
if v.include?('alt-scrollbar')
ENV['RELINE_ALT_SCROLLBAR'] = '1'
end
}
opt.on('--complete') {
Reline.completion_proc = lambda { |target, preposing = nil, postposing = nil|

View file

@ -1114,6 +1114,19 @@ begin
EOC
end
def test_dialog_with_fullwidth_scrollbar
start_terminal(20, 40, %W{ruby -I#{@pwd}/lib #{@pwd}/test/reline/yamatanooroti/multiline_repl --dialog simple,scrollkey,alt-scrollbar}, startup_message: 'Multiline REPL.')
close
assert_screen(<<~'EOC')
Multiline REPL.
prompt>
Ruby is... ::
A dynamic, open source programming ::
language with a focus on simplicity''
and productivity. It has an elegant
EOC
end
def test_rerender_argument_prompt_after_pasting
start_terminal(20, 30, %W{ruby -I#{@pwd}/lib #{@pwd}/test/reline/yamatanooroti/multiline_repl}, startup_message: 'Multiline REPL.')
write('abcdef')