Merge pull request #1174 from eborden/eborden/add-brittany-for-haskell-formatting

Add brittany for Haskell formatting
This commit is contained in:
w0rp
2017-12-07 19:15:33 +00:00
committed by GitHub
6 changed files with 56 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
Before:
Save g:ale_haskell_brittany_executable
" Use an invalid global executable, so we don't match it.
let g:ale_haskell_brittany_executable = 'xxxinvalid'
call ale#test#SetDirectory('/testplugin/test/fixers')
After:
Restore
call ale#test#RestoreDirectory()
Execute(The brittany callback should return the correct default values):
call ale#test#SetFilename('../haskell_files/testfile.hs')
AssertEqual
\ {
\ 'read_temporary_file': 1,
\ 'command': ale#Escape('xxxinvalid')
\ . ' %t',
\ },
\ ale#fixers#brittany#Fix(bufnr(''))