X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0ee596c5c5e11fc79598407eaf22f83d279f7e9e..5a4872f466ebd76ddd532bdf2798554421c53df4:/.vim/bundle/ale/test/fixers/test_npmgroovylint_fixer_callback.vader diff --git a/.vim/bundle/ale/test/fixers/test_npmgroovylint_fixer_callback.vader b/.vim/bundle/ale/test/fixers/test_npmgroovylint_fixer_callback.vader new file mode 100644 index 00000000..a4b1ee9a --- /dev/null +++ b/.vim/bundle/ale/test/fixers/test_npmgroovylint_fixer_callback.vader @@ -0,0 +1,23 @@ +Before: + Save b:ale_groovy_npmgroovylint_fix_options + + call ale#assert#SetUpFixerTest('groovy', 'npm-groovy-lint') + +After: + Restore + + call ale#assert#TearDownFixerTest() + +Execute(The callback should return the correct default values): + AssertFixer { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('npm-groovy-lint') . ' --fix %t', + \ } + +Execute(The callback should include custom options): + let b:ale_groovy_npmgroovylint_fix_options = '--format' + + AssertFixer { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('npm-groovy-lint') . ' --format %t', + \ }