mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-23 19:41:57 +08:00
Massively reduce the amount of code needed for linter tests
This commit is contained in:
@@ -1,23 +1,12 @@
|
||||
Before:
|
||||
Save g:ale_haskell_ghc_options
|
||||
|
||||
unlet! g:ale_haskell_ghc_options
|
||||
unlet! b:ale_haskell_ghc_options
|
||||
|
||||
runtime ale_linters/haskell/ghc.vim
|
||||
call ale#assert#SetUpLinterTest('haskell', 'ghc')
|
||||
|
||||
After:
|
||||
Restore
|
||||
unlet! b:ale_haskell_ghc_options
|
||||
call ale#linter#Reset()
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Execute(The options should be used in the command):
|
||||
AssertEqual
|
||||
\ 'ghc -fno-code -v0 %t',
|
||||
\ ale_linters#haskell#ghc#GetCommand(bufnr(''))
|
||||
AssertLinter 'ghc', 'ghc -fno-code -v0 %t'
|
||||
|
||||
let b:ale_haskell_ghc_options = 'foobar'
|
||||
|
||||
AssertEqual
|
||||
\ 'ghc foobar %t',
|
||||
\ ale_linters#haskell#ghc#GetCommand(bufnr(''))
|
||||
AssertLinter 'ghc', 'ghc foobar %t'
|
||||
|
||||
Reference in New Issue
Block a user