Merge pull request #1270 from kevinkjt2000/test-ghc-options

test for ghc options
This commit is contained in:
w0rp 2018-01-12 12:11:33 +00:00 committed by GitHub
commit e18aba1d7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
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
After:
Restore
unlet! b:ale_haskell_ghc_options
call ale#linter#Reset()
Execute(The options should be used in the command):
AssertEqual
\ 'ghc -fno-code -v0 %t',
\ ale_linters#haskell#ghc#GetCommand(bufnr(''))
let b:ale_haskell_ghc_options = 'foobar'
AssertEqual
\ 'ghc foobar %t',
\ ale_linters#haskell#ghc#GetCommand(bufnr(''))