From 716b22d524b80941eee6538e988a963f923901f3 Mon Sep 17 00:00:00 2001 From: Simon Bugert Date: Sun, 5 Nov 2017 22:24:41 +0100 Subject: Add shfmt fixer for sh files (#1083) * Add shfmt fixer for sh files * Add tests for shfmt fixer --- test/fixers/test_shfmt_fixer_callback.vader | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/fixers/test_shfmt_fixer_callback.vader (limited to 'test') diff --git a/test/fixers/test_shfmt_fixer_callback.vader b/test/fixers/test_shfmt_fixer_callback.vader new file mode 100644 index 00000000..dcdf66b4 --- /dev/null +++ b/test/fixers/test_shfmt_fixer_callback.vader @@ -0,0 +1,24 @@ +Before: + Save g:ale_sh_shfmt_executable + Save g:ale_sh_shfmt_options + + " Use an invalid global executable, so we don't match it. + let g:ale_sh_shfmt_executable = 'xxxinvalid' + let g:ale_sh_shfmt_options = '' + +Execute(The shfmt callback should return the correct default values): + AssertEqual + \ { + \ 'command': ale#Escape('xxxinvalid'), + \ }, + \ ale#fixers#shfmt#Fix(bufnr('')) + +Execute(The shfmt callback should include custom shfmt options): + let g:ale_sh_shfmt_options = '--some-option' + + AssertEqual + \ { + \ 'command': ale#Escape(g:ale_sh_shfmt_executable) + \ . ' --some-option', + \ }, + \ ale#fixers#shfmt#Fix(bufnr('')) -- cgit v1.2.3