summaryrefslogtreecommitdiff
path: root/test/command_callback/test_ansible_lint_command_callback.vader
blob: ddc6c6c8cf943406bcacf16c8237a3437e1793e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Before:
  call ale#assert#SetUpLinterTest('ansible', 'ansible_lint')
  let b:bin_dir = has('win32') ? 'Scripts' : 'bin'

After:
  unlet! b:bin_dir
  unlet! b:executable
  call ale#assert#TearDownLinterTest()

Execute(The ansible_lint command callback should return default string):
  AssertLinter 'ansible-lint', ale#Escape('ansible-lint') . ' -p %t'

Execute(The ansible_lint executable should be configurable):
  let g:ale_ansible_ansible_lint_executable = '~/.local/bin/ansible-lint'

  AssertLinter '~/.local/bin/ansible-lint',
  \ ale#Escape('~/.local/bin/ansible-lint') . ' -p %t'