summaryrefslogtreecommitdiff
path: root/test/test_setting_loclist_from_another_buffer.vader
blob: 4b757c61a6de82ebc09d86c4cf4a816624b9646c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Before:
  let g:original_buffer = bufnr('%')
  new

After:
  unlet! g:original_buffer

Execute(Errors should be set in the loclist for the original buffer, not the new one):
  call ale#list#SetLists(g:original_buffer, [{'lnum': 4, 'text': 'foo'}])

  AssertEqual [], getloclist(0)
  AssertEqual 1, len(getloclist(bufwinid(g:original_buffer)))
  AssertEqual 'foo', getloclist(bufwinid(g:original_buffer))[0].text