diff options
author | Zack Kourouma <zack@kourouma.me> | 2017-10-24 14:29:04 -0700 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2017-10-24 22:29:04 +0100 |
commit | 07dad64acb2ac67c3ccf5582995e3377d1479aa7 (patch) | |
tree | 4145496d27c551b79d489bb19a903937112b59ba /test | |
parent | b172cd8b17a8d9f0573e75211963e59b37ad5c34 (diff) | |
download | ale-07dad64acb2ac67c3ccf5582995e3377d1479aa7.zip |
adds fixer support for hfmt (#1027)
Add support for fixing Haskell with hfmt
Diffstat (limited to 'test')
-rw-r--r-- | test/fixers/test_hfmt_fixer_callback.vader | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/fixers/test_hfmt_fixer_callback.vader b/test/fixers/test_hfmt_fixer_callback.vader new file mode 100644 index 00000000..69cd03f8 --- /dev/null +++ b/test/fixers/test_hfmt_fixer_callback.vader @@ -0,0 +1,24 @@ +Before: + Save g:ale_haskell_hfmt_executable + + " Use an invalid global executable, so we don't match it. + let g:ale_haskell_hfmt_executable = 'xxxinvalid' + + call ale#test#SetDirectory('/testplugin/test/fixers') + +After: + Restore + + call ale#test#RestoreDirectory() + +Execute(The hfmt callback should return the correct default values): + call ale#test#SetFilename('../haskell_files/testfile.hs') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' -w' + \ . ' %t', + \ }, + \ ale#fixers#hfmt#Fix(bufnr('')) |