mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-25 22:27:41 +00:00
Add basic test case for --reverse
This commit is contained in:
parent
fe89ac8a89
commit
be5c17612a
@ -224,9 +224,26 @@ class TestGoFZF < MiniTest::Unit::TestCase
|
||||
tmux.send_keys '^', '3'
|
||||
tmux.until { |lines| lines[-2].include?('1/2') }
|
||||
tmux.send_keys :Enter
|
||||
tmux.send_keys 'echo -n done', :Enter
|
||||
tmux.until { |lines| lines[-1].include?('done') }
|
||||
assert_equal [' 1st 2nd 3rd/'], File.read(tempname).split($/)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_scroll
|
||||
[true, false].each do |rev|
|
||||
tmux.send_keys "seq 1 100 | fzf #{'--reverse' if rev} > #{tempname}", :Enter
|
||||
tmux.until { |lines| rev ? lines.first == '>' : lines.last == '>' }
|
||||
|
||||
110.times do
|
||||
tmux.send_keys rev ? :Down : :Up
|
||||
end
|
||||
tmux.send_keys :Enter
|
||||
tmux.send_keys 'echo -n done', :Enter
|
||||
tmux.until { |lines| lines[-1].include?('done') }
|
||||
assert_equal '100', File.read(tempname).chomp
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user