blob: 88f86815b3e6088a7e8a08234c5131a6d60af74c (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | -- 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)
 |