mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
19 lines
429 B
Lua
19 lines
429 B
Lua
|
-- Test for the quickfix commands.
|
||
|
|
||
|
local helpers = require('test.functional.helpers')
|
||
|
local insert, source = helpers.insert, helpers.source
|
||
|
local clear, expect = helpers.clear, helpers.expect
|
||
|
|
||
|
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)
|