mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
fix(treesitter): suppress get_parser warnings via opts.error
This commit is contained in:
committed by
Christian Clason
parent
7b71fdbc1e
commit
0f067cd34d
22
test/functional/lua/deprecated_spec.lua
Normal file
22
test/functional/lua/deprecated_spec.lua
Normal file
@@ -0,0 +1,22 @@
|
||||
local t = require('test.testutil')
|
||||
local n = require('test.functional.testnvim')()
|
||||
|
||||
local clear = n.clear
|
||||
local exec_lua = n.exec_lua
|
||||
local eq = t.eq
|
||||
|
||||
describe('deprecated lua code', function()
|
||||
before_each(clear)
|
||||
|
||||
describe('vim.treesitter.get_parser()', function()
|
||||
it('returns nil for versions >= 0.12', function()
|
||||
local result = exec_lua(function()
|
||||
if vim.version.ge(vim.version(), '0.12') then
|
||||
return vim.treesitter.get_parser(0, 'borklang')
|
||||
end
|
||||
return nil
|
||||
end)
|
||||
eq(nil, result)
|
||||
end)
|
||||
end)
|
||||
end)
|
||||
Reference in New Issue
Block a user