aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-12-30 00:03:27 -0500
committerJustin M. Keyes <justinkz@gmail.com>2014-12-30 00:03:27 -0500
commita04691f4ba902a7724fc7a1b48837444c4034496 (patch)
tree1ee1961e07d6833cfb6d4867f33f670ae9ded135 /test
parent7285b0c8637505c7e464e4efb81df77f6cdcf02f (diff)
parentbb1be08bae200bbc6b297c2d926fa8565fd42b5c (diff)
downloadrneovim-a04691f4ba902a7724fc7a1b48837444c4034496.tar.gz
rneovim-a04691f4ba902a7724fc7a1b48837444c4034496.tar.bz2
rneovim-a04691f4ba902a7724fc7a1b48837444c4034496.zip
Merge pull request #1754 from justinmk/vim-7.4.487
vim-patch:7.4.487 vim-patch:6a598be
Diffstat (limited to 'test')
-rw-r--r--test/functional/legacy/signs_spec.lua24
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)