summaryrefslogtreecommitdiff
path: root/test/linter/test_swift_sourcekitlsp.vader
blob: 1040d590a236947a2cd0dc27685e844efabd47dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Before:
  call ale#assert#SetUpLinterTest('swift', 'sourcekitlsp')

After:
  call ale#assert#TearDownLinterTest()

Execute(The default executable path should be correct):
  call ale#test#SetFilename('../test-files/swift/swift-package-project/src/folder/dummy.swift')

  AssertLinter 'sourcekit-lsp', ale#Escape('sourcekit-lsp')

Execute(Should let users configure a global executable and override local paths):
  call ale#test#SetFilename('../test-files/swift/swift-package-project/src/folder/dummy.swift')

  let g:ale_sourcekit_lsp_executable = '/path/to/custom/sourcekitlsp'

  AssertLinter '/path/to/custom/sourcekitlsp',
  \ ale#Escape('/path/to/custom/sourcekitlsp')

Execute(The language should be correct):
  AssertLSPLanguage 'swift'