diff options
author | Ahmed El Gabri <ahmed@gabri.me> | 2017-10-29 16:27:52 +0100 |
---|---|---|
committer | Ahmed El Gabri <ahmed@gabri.me> | 2017-10-29 21:48:28 +0100 |
commit | 634eb1920cf6f22bf5a121928511ad873656b819 (patch) | |
tree | 8a298099151b8ece8c51d970cb87eaae9bb60b4a /test | |
parent | 1aa737cdc9b6e92b51823df93f356b4ec37beab3 (diff) | |
download | ale-634eb1920cf6f22bf5a121928511ad873656b819.zip |
refmt fixer for ReasonML
Diffstat (limited to 'test')
-rw-r--r-- | test/fixers/test_refmt_fixer_callback.vader | 41 | ||||
-rw-r--r-- | test/reasonml_files/testfile.re | 0 |
2 files changed, 41 insertions, 0 deletions
diff --git a/test/fixers/test_refmt_fixer_callback.vader b/test/fixers/test_refmt_fixer_callback.vader new file mode 100644 index 00000000..9ec331e4 --- /dev/null +++ b/test/fixers/test_refmt_fixer_callback.vader @@ -0,0 +1,41 @@ +Before: + Save g:ale_reasonml_refmt_executable + Save g:ale_reasonml_refmt_options + + " Use an invalid global executable, so we don't match it. + let g:ale_reasonml_refmt_executable = 'xxxinvalid' + let g:ale_reasonml_refmt_options = '' + + call ale#test#SetDirectory('/testplugin/test/fixers') + +After: + Restore + + call ale#test#RestoreDirectory() + +Execute(The refmt callback should return the correct default values): + call ale#test#SetFilename('../reasonml_files/testfile.re') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' --in-place' + \ . ' %t', + \ }, + \ ale#fixers#refmt#Fix(bufnr('')) + +Execute(The refmt callback should include custom refmt options): + let g:ale_reasonml_refmt_options = "-w 80" + call ale#test#SetFilename('../reasonml_files/testfile.re') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' ' . g:ale_reasonml_refmt_options + \ . ' --in-place' + \ . ' %t', + \ }, + \ ale#fixers#refmt#Fix(bufnr('')) + diff --git a/test/reasonml_files/testfile.re b/test/reasonml_files/testfile.re new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/reasonml_files/testfile.re |