mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
052498ed42
Specifically, functions that are run in the context of the test runner are put in module `test/testutil.lua` while the functions that are run in the context of the test session are put in `test/functional/testnvim.lua`. Closes https://github.com/neovim/neovim/issues/27004.
17 lines
478 B
Lua
17 lines
478 B
Lua
local t = require('test.testutil')
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
local clear = n.clear
|
|
local command = n.command
|
|
local eq = t.eq
|
|
local pcall_err = t.pcall_err
|
|
|
|
describe('search (/)', function()
|
|
before_each(clear)
|
|
|
|
it('fails with huge column (%c) value #9930', function()
|
|
eq([[Vim:E951: \% value too large]], pcall_err(command, '/\\v%18446744071562067968c'))
|
|
eq([[Vim:E951: \% value too large]], pcall_err(command, '/\\v%2147483648c'))
|
|
end)
|
|
end)
|