diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-27 16:36:58 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-29 23:48:23 -0500 |
commit | ec615012a702dac26cfb685901c32d5bde6bc4de (patch) | |
tree | 1c825213a1eca0a10735316632cb5825117b7ff3 | |
parent | 7285b0c8637505c7e464e4efb81df77f6cdcf02f (diff) | |
download | rneovim-ec615012a702dac26cfb685901c32d5bde6bc4de.tar.gz rneovim-ec615012a702dac26cfb685901c32d5bde6bc4de.tar.bz2 rneovim-ec615012a702dac26cfb685901c32d5bde6bc4de.zip |
vim-patch:6a598be test for 7.4.487
https://code.google.com/p/vim/source/detail?r=6a598be6d4e8
-rw-r--r-- | test/functional/legacy/signs_spec.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/functional/legacy/signs_spec.lua b/test/functional/legacy/signs_spec.lua new file mode 100644 index 0000000000..89b2bf3b73 --- /dev/null +++ b/test/functional/legacy/signs_spec.lua @@ -0,0 +1,24 @@ +-- Tests for signs + +local helpers = require('test.functional.helpers') +local feed, insert, source = helpers.feed, helpers.insert, helpers.source +local clear, execute, expect = helpers.clear, helpers.execute, helpers.expect + +describe('signs', function() + setup(clear) + + it('is working', function() + execute('sign define JumpSign text=x') + execute([[exe 'sign place 42 line=2 name=JumpSign buffer=' . bufnr('')]]) + -- Split the window to the bottom to verify :sign-jump will stay in the current + -- window if the buffer is displayed there. + execute('bot split') + execute([[exe 'sign jump 42 buffer=' . bufnr('')]]) + execute([[call append(line('$'), winnr())]]) + + -- Assert buffer contents. + expect([[ + + 2]]) + end) +end) |