summaryrefslogtreecommitdiff
path: root/test/linter/test_nix_statix.vader
blob: 8ee4c027c947132e3102b6850b602ccf4e99bc8a (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('nix', 'statix')

After:
  call ale#assert#TearDownLinterTest()

Execute(The statix command should be correct):
  AssertLinter 'statix', ale#Escape('statix') . ' check -o errfmt --stdin'

Execute(Additional statix options should be configurable):
  let g:ale_nix_statix_check_options = '--foobar'

  AssertLinter 'statix',
  \ ale#Escape('statix') . ' check -o errfmt --stdin --foobar'

Execute(The statix command should be configurable):
  let g:ale_nix_statix_check_executable = 'foo/bar'

  AssertLinter 'foo/bar', ale#Escape('foo/bar') . ' check -o errfmt --stdin'