summaryrefslogtreecommitdiff
path: root/test/command_callback/test_pony_ponyc_command_callbacks.vader
blob: e48346e8d6226c2ceddd6f94554091c4a77b383f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Before:
  Save g:ale_pony_ponyc_options

  unlet! g:ale_pony_ponyc_options
  unlet! b:ale_pony_ponyc_options

  runtime ale_linters/pony/ponyc.vim

After:
  Restore
  unlet! b:ale_pony_ponyc_options
  call ale#linter#Reset()

Execute(The options should be used in the command):
  AssertEqual
  \ 'ponyc --pass paint',
  \ ale_linters#pony#ponyc#GetCommand(bufnr(''))

  let b:ale_pony_ponyc_options = 'foobar'

  AssertEqual
  \ 'ponyc foobar',
  \ ale_linters#pony#ponyc#GetCommand(bufnr(''))