neovim/test/functional/legacy/options_spec.lua

14 lines
349 B
Lua
Raw Normal View History

-- Test if ":options" throws any exception. The options window seems to mess
-- other tests, so restart nvim in the teardown hook
2014-10-22 15:34:54 -07:00
local helpers = require('test.functional.helpers')
local command, clear = helpers.command, helpers.clear
2014-10-22 15:34:54 -07:00
describe('options', function()
setup(clear)
it('is working', function()
command('options')
2014-10-22 15:34:54 -07:00
end)
end)