diff options
author | TANIGUCHI Masaya <xtaniguchimasaya+code@gmail.com> | 2019-01-11 03:53:45 +0900 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2019-01-10 18:53:45 +0000 |
commit | fabebb3a47d41b31d900e98e6f96b61524eec6aa (patch) | |
tree | 8e1df094af0f960de19cfacd077de53c004a5f27 /test/fixers | |
parent | 721183116e91d3988185c7ca87a409f3488c5b01 (diff) | |
download | ale-fabebb3a47d41b31d900e98e6f96b61524eec6aa.zip |
Add textlint for Asciidoc and add it to Fixers (#2193)
* Add textlint for asciidoc
* Add textlint --fix
Diffstat (limited to 'test/fixers')
-rw-r--r-- | test/fixers/test_textlint_fixer_callback.vader | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/fixers/test_textlint_fixer_callback.vader b/test/fixers/test_textlint_fixer_callback.vader new file mode 100644 index 00000000..2848cfa5 --- /dev/null +++ b/test/fixers/test_textlint_fixer_callback.vader @@ -0,0 +1,42 @@ +Before: + Save g:ale_textlint_executable + Save g:ale_textlint_options + Save g:ale_textlint_use_global + + " Use an invalid global executable, so we don't match it. + let g:ale_textlint_executable = 'xxxinvalid' + let g:ale_textlint_options = '' + let g:ale_textlint_use_global = 0 + + call ale#test#SetDirectory('/testplugin/test/fixers') + +After: + Restore + + call ale#test#RestoreDirectory() + +Execute(The textlint callback should return the correct default values): + call ale#test#SetFilename('../markdown_files/testfile.md') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' --fix' + \ . ' %t', + \ }, + \ ale#fixers#textlint#Fix(bufnr('')) + +Execute(The textlint callback should include custom textlint options): + let g:ale_textlint_options = "--quiet" + call ale#test#SetFilename('../markdown_files/testfile.md') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape('xxxinvalid') + \ . ' --fix' + \ . ' ' . g:ale_textlint_options + \ . ' %t', + \ }, + \ ale#fixers#textlint#Fix(bufnr('')) |