diff options
author | Evan Rutledge Borden <eborden@frontrowed.com> | 2017-11-28 17:58:13 -0500 |
---|---|---|
committer | Evan Rutledge Borden <eborden@frontrowed.com> | 2017-11-28 17:58:13 -0500 |
commit | edb3a0c5e4079708b915e6227541e4e1fae9f712 (patch) | |
tree | 5f74c808ab817d4d061c473525e91885620c2809 /test | |
parent | a43ada93e40b8286dde3cd62f10369876787ddc1 (diff) | |
download | ale-edb3a0c5e4079708b915e6227541e4e1fae9f712.zip |
Add brittany for Haskell formatting
`brittany` is one of the options for Haskell source formatting. This
adds the necessary fixer files and documentation to support `brittany`
in `ALE`.
Diffstat (limited to 'test')
-rw-r--r-- | test/fixers/test_brittany_fixer_callback.vader | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/fixers/test_brittany_fixer_callback.vader b/test/fixers/test_brittany_fixer_callback.vader new file mode 100644 index 00000000..a0182b52 --- /dev/null +++ b/test/fixers/test_brittany_fixer_callback.vader @@ -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('')) |