neovim/test/functional/legacy/quickfix_spec.lua
2016-02-02 20:23:12 +01:00

18 lines
375 B
Lua

-- Test for the quickfix commands.
local helpers = require('test.functional.helpers')
local source, clear = helpers.source, helpers.clear
describe('helpgrep', function()
before_each(clear)
it('works', function()
source([[
helpgrep quickfix
copen
" This wipes out the buffer, make sure that doesn't cause trouble.
cclose
]])
end)
end)