mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
add ocamlformat support
This commit is contained in:
40
test/fixers/test_ocamlformat_fixer_callback.vader
Normal file
40
test/fixers/test_ocamlformat_fixer_callback.vader
Normal file
@@ -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(''))
|
||||
Reference in New Issue
Block a user