diff options
author | sbl <stephen.lumenta@gmail.com> | 2018-08-26 13:47:56 +0200 |
---|---|---|
committer | sbl <stephen.lumenta@gmail.com> | 2018-08-26 13:47:56 +0200 |
commit | aa015ec4db37c4868529f19ced6eeddd70668d26 (patch) | |
tree | b34859b503e953b38fe2a272029296f9e5a04466 /test | |
parent | 3c85c7ef65242cf80279cf9dcf843523f6d7875b (diff) | |
download | ale-aa015ec4db37c4868529f19ced6eeddd70668d26.zip |
add ocamlformat support
Diffstat (limited to 'test')
-rw-r--r-- | test/fixers/test_ocamlformat_fixer_callback.vader | 40 | ||||
-rw-r--r-- | test/ocaml-test-files/testfile.ml | 0 |
2 files changed, 40 insertions, 0 deletions
diff --git a/test/fixers/test_ocamlformat_fixer_callback.vader b/test/fixers/test_ocamlformat_fixer_callback.vader new file mode 100644 index 00000000..e9faca24 --- /dev/null +++ b/test/fixers/test_ocamlformat_fixer_callback.vader @@ -0,0 +1,40 @@ +Before: + Save g:ale_ocaml_ocamlformat_executable + Save g:ale_ocaml_ocamlformat_options + + " Use an invalid global executable, so we don't match it. + let g:ale_ocaml_ocamlformat_executable = 'xxxinvalid' + let g:ale_ocaml_ocamlformat_options = '' + + call ale#test#SetDirectory('/testplugin/test/fixers') + +After: + Restore + + call ale#test#RestoreDirectory() + +Execute(The ocamlformat callback should return the correct default values): + call ale#test#SetFilename('../ocaml-test-files/testfile.re') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' --inplace' + \ . ' %t', + \ }, + \ ale#fixers#ocamlformat(bufnr('')) + +Execute(The ocamlformat callback should include custom ocamlformat options): + let g:ale_ocaml_ocamlformat_options = "-m 78" + call ale#test#SetFilename('../ocaml-test-files/testfile.re') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' ' . g:ale_ocaml_ocamlformat_options + \ . ' --inplace' + \ . ' %t', + \ }, + \ ale#fixers#ocamlformat(bufnr('')) diff --git a/test/ocaml-test-files/testfile.ml b/test/ocaml-test-files/testfile.ml new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/ocaml-test-files/testfile.ml |