blob: 0e65edbcf8c57c5c24832799bdccfb008a9f0293 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
-- Tests for signs
local helpers = require('test.functional.helpers')(after_each)
local clear, command, expect = helpers.clear, helpers.command, helpers.expect
describe('signs', function()
setup(clear)
it('is working', function()
command('sign define JumpSign text=x')
command([[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.
command('bot split')
command([[exe 'sign jump 42 buffer=' . bufnr('')]])
command([[call append(line('$'), winnr())]])
-- Assert buffer contents.
expect([[
2]])
end)
end)
|