summaryrefslogtreecommitdiff
path: root/test/linter/test_cookstyle.vader
blob: ad7391cc77a7e80132c3534f4280731c560c3588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Before:
  call ale#assert#SetUpLinterTest('chef', 'cookstyle')

After:
  call ale#assert#TearDownLinterTest()

Execute(The default command should be correct):
  AssertLinter 'cookstyle', ale#Escape('cookstyle') . ' --force-exclusion --format json --stdin  %s'

Execute(The executable path should be configurable):
  let b:ale_chef_cookstyle_executable = 'foobar'

  AssertLinter 'foobar', ale#Escape('foobar') . ' --force-exclusion --format json --stdin  %s'

Execute(The linter options should be configurable):
  let b:ale_chef_cookstyle_options = '--parallel'

  AssertLinter 'cookstyle', ale#Escape('cookstyle') . ' --parallel --force-exclusion --format json --stdin  %s'