mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
test: helpers.execute() => helpers.feed_command()
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
local helpers = require('test.functional.helpers')(after_each)
|
||||
local clear, insert, eq = helpers.clear, helpers.insert, helpers.eq
|
||||
local execute, expect = helpers.execute, helpers.expect
|
||||
local command, expect = helpers.command, helpers.expect
|
||||
local feed, eval = helpers.feed, helpers.eval
|
||||
local exc_exec = helpers.exc_exec
|
||||
|
||||
@@ -32,7 +32,7 @@ describe('gu and gU', function()
|
||||
end
|
||||
|
||||
before_each(function()
|
||||
execute('lang ctype tr_TR.UTF-8')
|
||||
command('lang ctype tr_TR.UTF-8')
|
||||
end)
|
||||
|
||||
it('with default casemap', function()
|
||||
@@ -46,7 +46,7 @@ describe('gu and gU', function()
|
||||
end)
|
||||
|
||||
it('with casemap=""', function()
|
||||
execute('set casemap=')
|
||||
command('set casemap=')
|
||||
-- expect Turkish locale behavior
|
||||
insert("iI")
|
||||
feed("VgU")
|
||||
|
||||
Reference in New Issue
Block a user