diff options
author | Horacio Sanson <hsanson@gmail.com> | 2021-02-05 22:58:43 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 22:58:43 +0900 |
commit | f6128058013e9df6191c54e5d985153a86a215c0 (patch) | |
tree | 4e69ea2a079a0ad75aec97a65c2369bede69d0ab /test/fixers | |
parent | 9b5c09047361f3ec2cf18afbb6d1e03047a59778 (diff) | |
parent | a49f664aea742bafae43af50eac568143870a663 (diff) | |
download | ale-f6128058013e9df6191c54e5d985153a86a215c0.zip |
Merge pull request #3576 from cyyever/fish_indent
Fish indent
Diffstat (limited to 'test/fixers')
-rw-r--r-- | test/fixers/test_fish_indent_fixer_callback.vader | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/fixers/test_fish_indent_fixer_callback.vader b/test/fixers/test_fish_indent_fixer_callback.vader new file mode 100644 index 00000000..beb0b42e --- /dev/null +++ b/test/fixers/test_fish_indent_fixer_callback.vader @@ -0,0 +1,40 @@ +Before: + Save g:ale_fish_fish_indent_executable + Save g:ale_fish_fish_indent_options + + " Use an invalid global executable, so we don't match it. + let g:ale_fish_fish_indent_executable = 'xxxinvalid' + let g:ale_fish_fish_indent_options = '' + + call ale#test#SetDirectory('/testplugin/test/fixers') + +After: + Restore + + call ale#test#RestoreDirectory() + +Execute(The fish_indent callback should return the correct default values): + call ale#test#SetFilename('../fish_files/testfile.fish') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' -w ' + \ . ' %t', + \ }, + \ ale#fixers#fish_indent#Fix(bufnr('')) + +Execute(The fish_indent callback should include custom fish_indent options): + let g:ale_fish_fish_indent_options = "-d" + call ale#test#SetFilename('../fish_files/testfile.fish') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' -w ' + \ . ' -d' + \ . ' %t', + \ }, + \ ale#fixers#fish_indent#Fix(bufnr('')) |