diff options
author | Fernando Mendes <devfrmendes@gmail.com> | 2018-03-08 14:37:56 +0000 |
---|---|---|
committer | Fernando Mendes <devfrmendes@gmail.com> | 2018-03-08 15:29:10 +0000 |
commit | 6320ce66742fd8bf73b8f77341669b2c1505c47d (patch) | |
tree | e800fb7649736bba4aed2cacb4308c42d53a6206 /test/fixers/test_mix_format_fixer_callback.vader | |
parent | 0a0535546f4d9a0dfe02671630fdaba72ea5828d (diff) | |
download | ale-6320ce66742fd8bf73b8f77341669b2c1505c47d.zip |
Allow passing options to mix_format
Diffstat (limited to 'test/fixers/test_mix_format_fixer_callback.vader')
-rw-r--r-- | test/fixers/test_mix_format_fixer_callback.vader | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/fixers/test_mix_format_fixer_callback.vader b/test/fixers/test_mix_format_fixer_callback.vader index c6c97c57..7bd7c77b 100644 --- a/test/fixers/test_mix_format_fixer_callback.vader +++ b/test/fixers/test_mix_format_fixer_callback.vader @@ -1,6 +1,7 @@ Before: call ale#test#SetDirectory('/testplugin/test/fixers') Save g:ale_elixir_mix_executable + Save g:ale_elixir_mix_format_options let g:ale_elixir_mix_executable = 'xxxinvalid' @@ -14,7 +15,18 @@ Execute(The mix_format callback should return the correct default values): \ { \ 'read_temporary_file': 1, \ 'command': ale#Escape('xxxinvalid') - \ . ' format %t', + \ . ' format %t', \ }, \ ale#fixers#mix_format#Fix(bufnr('')) +Execute(The mix_format callback should include the correct format options): + let g:ale_elixir_mix_format_options = 'invalid_options' + call ale#test#SetFilename('../elixir-test-files/testfile.ex') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' format invalid_options %t', + \ }, + \ ale#fixers#mix_format#Fix(bufnr('')) |