aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/signs_spec.lua
blob: 89b2bf3b734bc90ac58856f67965f444840c3616 (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
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)