mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -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.
28 lines
639 B
Lua
28 lines
639 B
Lua
-- Test if fnameescape is correct for special chars like!
|
|
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
local clear = n.clear
|
|
local command, expect = n.command, n.expect
|
|
|
|
describe('fnameescape', function()
|
|
setup(clear)
|
|
|
|
it('is working', function()
|
|
command('let fname = "Xspa ce"')
|
|
command('try | exe "w! " . fnameescape(fname) | put=\'Space\' | endtry')
|
|
command('let fname = "Xemark!"')
|
|
command('try | exe "w! " . fnameescape(fname) | put=\'ExclamationMark\' | endtry')
|
|
|
|
expect([[
|
|
|
|
Space
|
|
ExclamationMark]])
|
|
end)
|
|
|
|
teardown(function()
|
|
os.remove('Xspa ce')
|
|
os.remove('Xemark!')
|
|
end)
|
|
end)
|