neovim/test/functional/legacy/102_fnameescape_spec.lua
dundargoc 052498ed42 test: improve test conventions
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.
2024-04-23 18:17:04 +02:00

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)