diff options
Diffstat (limited to 'test/test_core.rb')
| -rw-r--r-- | test/test_core.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_core.rb b/test/test_core.rb index b7eba741..b19b1dc5 100644 --- a/test/test_core.rb +++ b/test/test_core.rb @@ -1981,4 +1981,11 @@ class TestCore < TestInteractive refute lines.any_include?('[1]') end end + + def test_render_order + tmux.send_keys %(seq 100 | #{FZF} --bind='focus:preview(echo boom)+change-footer(bam)'), :Enter + tmux.until { assert_equal 100, it.match_count } + tmux.until { assert it.any_include?('boom') } + tmux.until { assert it.any_include?('bam') } + end end |
