aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ex_cmds/highlight_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/ex_cmds/highlight_spec.lua')
-rw-r--r--test/functional/ex_cmds/highlight_spec.lua35
1 files changed, 19 insertions, 16 deletions
diff --git a/test/functional/ex_cmds/highlight_spec.lua b/test/functional/ex_cmds/highlight_spec.lua
index 958dd99226..897a2997bc 100644
--- a/test/functional/ex_cmds/highlight_spec.lua
+++ b/test/functional/ex_cmds/highlight_spec.lua
@@ -1,11 +1,11 @@
local Screen = require('test.functional.ui.screen')
-local helpers = require("test.functional.helpers")(after_each)
+local helpers = require('test.functional.helpers')(after_each)
local eq, command = helpers.eq, helpers.command
local clear = helpers.clear
local eval, exc_exec = helpers.eval, helpers.exc_exec
local exec = helpers.exec
-local funcs = helpers.funcs
-local meths = helpers.meths
+local fn = helpers.fn
+local api = helpers.api
describe(':highlight', function()
local screen
@@ -17,15 +17,18 @@ describe(':highlight', function()
end)
it('invalid color name', function()
- eq('Vim(highlight):E421: Color name or number not recognized: ctermfg=#181818',
- exc_exec("highlight normal ctermfg=#181818"))
- eq('Vim(highlight):E421: Color name or number not recognized: ctermbg=#181818',
- exc_exec("highlight normal ctermbg=#181818"))
+ eq(
+ 'Vim(highlight):E421: Color name or number not recognized: ctermfg=#181818',
+ exc_exec('highlight normal ctermfg=#181818')
+ )
+ eq(
+ 'Vim(highlight):E421: Color name or number not recognized: ctermbg=#181818',
+ exc_exec('highlight normal ctermbg=#181818')
+ )
end)
it('invalid group name', function()
- eq('Vim(highlight):E411: Highlight group not found: foo',
- exc_exec("highlight foo"))
+ eq('Vim(highlight):E411: Highlight group not found: foo', exc_exec('highlight foo'))
end)
it('"Normal" foreground with red', function()
@@ -50,18 +53,18 @@ describe(':highlight', function()
end)
it('clear', function()
- meths.set_var('colors_name', 'foo')
- eq(1, funcs.exists('g:colors_name'))
+ api.nvim_set_var('colors_name', 'foo')
+ eq(1, fn.exists('g:colors_name'))
command('hi clear')
- eq(0, funcs.exists('g:colors_name'))
- meths.set_var('colors_name', 'foo')
- eq(1, funcs.exists('g:colors_name'))
+ eq(0, fn.exists('g:colors_name'))
+ api.nvim_set_var('colors_name', 'foo')
+ eq(1, fn.exists('g:colors_name'))
exec([[
func HiClear()
hi clear
endfunc
]])
- funcs.HiClear()
- eq(0, funcs.exists('g:colors_name'))
+ fn.HiClear()
+ eq(0, fn.exists('g:colors_name'))
end)
end)