2016-04-23 16:53:11 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2015-01-26 20:56:03 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
2017-04-08 14:12:26 -07:00
|
|
|
local clear, feed, command = helpers.clear, helpers.feed, helpers.command
|
2015-01-26 20:56:03 -07:00
|
|
|
|
|
|
|
describe('Signs', function()
|
|
|
|
local screen
|
|
|
|
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
screen = Screen.new()
|
|
|
|
screen:attach()
|
2016-08-09 06:11:04 -07:00
|
|
|
screen:set_default_attr_ids( {
|
|
|
|
[0] = {bold=true, foreground=255},
|
|
|
|
[1] = {background = Screen.colors.Yellow},
|
|
|
|
[2] = {foreground = Screen.colors.DarkBlue, background = Screen.colors.Grey},
|
|
|
|
} )
|
2015-01-26 20:56:03 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
after_each(function()
|
|
|
|
screen:detach()
|
|
|
|
end)
|
|
|
|
|
|
|
|
describe(':sign place', function()
|
|
|
|
it('shadows previously placed signs', function()
|
|
|
|
feed('ia<cr>b<cr>c<cr><esc>')
|
2017-04-08 14:12:26 -07:00
|
|
|
command('sign define piet text=>> texthl=Search')
|
|
|
|
command('sign define pietx text=>! texthl=Search')
|
|
|
|
command('sign place 1 line=1 name=piet buffer=1')
|
|
|
|
command('sign place 2 line=3 name=piet buffer=1')
|
|
|
|
command('sign place 3 line=1 name=pietx buffer=1')
|
2015-01-26 20:56:03 -07:00
|
|
|
screen:expect([[
|
2016-08-09 06:11:04 -07:00
|
|
|
{1:>!}a |
|
|
|
|
{2: }b |
|
|
|
|
{1:>>}c |
|
|
|
|
{2: }^ |
|
|
|
|
{2: }{0:~ }|
|
|
|
|
{2: }{0:~ }|
|
|
|
|
{2: }{0:~ }|
|
|
|
|
{2: }{0:~ }|
|
|
|
|
{2: }{0:~ }|
|
|
|
|
{2: }{0:~ }|
|
|
|
|
{2: }{0:~ }|
|
|
|
|
{2: }{0:~ }|
|
|
|
|
{2: }{0:~ }|
|
2017-04-08 17:23:16 -07:00
|
|
|
|
|
2015-01-26 20:56:03 -07:00
|
|
|
]])
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
end)
|