From fddbfe7b0ed01fe9c23950e0e9eaf1f576c0eecd Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 25 Apr 2024 16:42:13 +0900 Subject: Fix 'reload' not terminating closed standard input stream Fix #3750 --- test/test_go.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test') diff --git a/test/test_go.rb b/test/test_go.rb index 537a9bd4..ba067997 100755 --- a/test/test_go.rb +++ b/test/test_go.rb @@ -1955,6 +1955,11 @@ class TestGoFZF < TestBase tmux.until { |lines| assert_equal 10, lines.item_count } end + def test_reload_should_terminate_stadard_input_stream + tmux.send_keys %(ruby -e "STDOUT.sync = true; loop { puts 1; sleep 0.1 }" | fzf --bind 'start:reload(seq 100)'), :Enter + tmux.until { |lines| assert_equal 100, lines.item_count } + end + def test_clear_list_when_header_lines_changed_due_to_reload tmux.send_keys %(seq 10 | #{FZF} --header 0 --header-lines 3 --bind 'space:reload(seq 1)'), :Enter tmux.until { |lines| assert_includes lines, ' 9' } -- cgit v1.2.3