summaryrefslogtreecommitdiff
path: root/test/fixers/test_ocamlformat_fixer_callback.vader
diff options
context:
space:
mode:
authorsbl <stephen.lumenta@gmail.com>2018-08-26 13:47:56 +0200
committersbl <stephen.lumenta@gmail.com>2018-08-26 13:47:56 +0200
commitaa015ec4db37c4868529f19ced6eeddd70668d26 (patch)
treeb34859b503e953b38fe2a272029296f9e5a04466 /test/fixers/test_ocamlformat_fixer_callback.vader
parent3c85c7ef65242cf80279cf9dcf843523f6d7875b (diff)
downloadale-aa015ec4db37c4868529f19ced6eeddd70668d26.zip
add ocamlformat support
Diffstat (limited to 'test/fixers/test_ocamlformat_fixer_callback.vader')
-rw-r--r--test/fixers/test_ocamlformat_fixer_callback.vader40
1 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(''))