mirror of
https://github.com/neovim/neovim.git
synced 2026-08-01 05:09:08 +00:00
Problem: The magic globals `it`, `describe`, etc., are more trouble than they are worth. - Hooking into `after_each` requires `getfenv()` hacks. - They confuse luals/emmylua, because the top-level `.luarc.json` isn't merged with `test/.luarc.json` (apparently a luals limitation?) - They totally defeat discoverability because the user just has to "know" about the various magic symbols. So they harm DX, which means they serve no purpose at all. Solution: - Expose the test API from `testutil`, so tests can call `t.it()`, `t.describe()`, etc., in the conventional way. - Drop `getfenv()` hacks. - Drop the `setfenv()` injection in `load_chunk`. - Drop `test/_meta.lua`.
46 lines
1.2 KiB
Lua
46 lines
1.2 KiB
Lua
-- Test for character searches
|
|
|
|
local n = require('test.functional.testnvim')()
|
|
local t = require('test.testutil')
|
|
|
|
local describe, it, setup = t.describe, t.it, t.setup
|
|
local feed, insert = n.feed, n.insert
|
|
local clear, feed_command, expect = n.clear, n.feed_command, n.expect
|
|
|
|
describe('charsearch', function()
|
|
setup(clear)
|
|
|
|
it('is working', function()
|
|
insert([[
|
|
Xabcdefghijkemnopqretuvwxyz
|
|
Yabcdefghijkemnopqretuvwxyz
|
|
Zabcdefghijkemnokqretkvwxyz]])
|
|
|
|
-- Check that "fe" and ";" work.
|
|
feed_command('/^X')
|
|
feed('ylfep;;p,,p')
|
|
-- Check that save/restore works.
|
|
feed_command('/^Y')
|
|
feed('ylfep')
|
|
feed_command('let csave = getcharsearch()')
|
|
feed('fip')
|
|
feed_command('call setcharsearch(csave)')
|
|
feed(';p;p')
|
|
-- Check that setcharsearch() changes the settings.
|
|
feed_command('/^Z')
|
|
feed('ylfep')
|
|
feed_command("call setcharsearch({'char': 'k'})")
|
|
feed(';p')
|
|
feed_command("call setcharsearch({'forward': 0})")
|
|
feed('$;p')
|
|
feed_command("call setcharsearch({'until': 1})")
|
|
feed(';;p')
|
|
|
|
-- Assert buffer contents.
|
|
expect([[
|
|
XabcdeXfghijkeXmnopqreXtuvwxyz
|
|
YabcdeYfghiYjkeYmnopqreYtuvwxyz
|
|
ZabcdeZfghijkZZemnokqretkZvwxyz]])
|
|
end)
|
|
end)
|