Avoid intermittent test failures

by making sure that we're back on shell command-line
This commit is contained in:
Junegunn Choi 2015-06-18 02:09:03 +09:00
parent d261c36cde
commit b504c6eb39

View File

@ -156,6 +156,7 @@ class TestBase < Minitest::Test
File.read(tempname)
ensure
File.unlink tempname while File.exists?(tempname)
tmux.prepare
end
def fzf(*opts)
@ -672,7 +673,7 @@ module TestShell
def test_alt_c
tmux.prepare
tmux.send_keys :Escape, :c, pane: 0
lines = tmux.until(1) { |lines| lines.item_count > 0 }
lines = tmux.until(1) { |lines| lines.item_count > 0 && lines[-3][2..-1] }
expected = lines[-3][2..-1]
tmux.send_keys :Enter, pane: 1
tmux.prepare