summaryrefslogtreecommitdiff
path: root/test/linter/test_lessc.vader
blob: b7d664c6893d76f8532b7d279058180671d476c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Before:
  call ale#assert#SetUpLinterTest('less', 'lessc')
  call ale#test#SetFilename('testfile.less')

  unlet! b:executable

After:
  unlet! b:executable

  call ale#assert#TearDownLinterTest()

Execute(node_modules directories should be discovered):
  call ale#test#SetFilename('../test-files/lessc/nested/testfile.less')

  let b:executable = ale#path#Simplify(
  \   g:dir
  \   . '/../test-files/lessc/node_modules/.bin/lessc'
  \)

  AssertLinter b:executable, ale#Escape(b:executable)
  \ . ' --no-color --lint'
  \ . ' --include-path='
  \ . ale#Escape(ale#path#Simplify(g:dir . '/../test-files/lessc/nested'))
  \ . ' -'

Execute(The global override should work):
  let b:ale_less_lessc_executable = 'foobar'
  let b:ale_less_lessc_use_global = 1

  call ale#test#SetFilename('../test-files/lessc/nested/testfile.less')

  AssertLinter 'foobar', ale#Escape('foobar')
  \ . ' --no-color --lint'
  \ . ' --include-path='
  \ . ale#Escape(ale#path#Simplify(g:dir . '/../test-files/lessc/nested'))
  \ . ' -'

Execute(Extra options should be configurable):
  let b:ale_less_lessc_options = '--whatever'

  AssertLinter 'lessc', ale#Escape('lessc')
  \ . ' --no-color --lint'
  \ . ' --include-path='
  \ . ale#Escape(ale#path#Simplify(g:dir))
  \ . ' --whatever'
  \ . ' -'