mirror of
https://github.com/neovim/neovim.git
synced 2024-12-21 03:35:02 -07:00
18 lines
375 B
Lua
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)
|