summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJesse Hathaway <jesse@mbuki-mvuki.org>2021-07-04 07:39:29 -0500
committerGitHub <noreply@github.com>2021-07-04 21:39:29 +0900
commit36fcb01e05979b410da1dcee10979b0f4e610eb6 (patch)
treedad3fad01d795f7017b357ff74ba7b4497eed678 /test
parente4ddd32c840c405b12abe76fefc860062989e429 (diff)
downloadale-36fcb01e05979b410da1dcee10979b0f4e610eb6.zip
Add pandoc as a markdown fixer (#3641)
Utilize pandoc to fix markdown files, currently set to Github-Flavored Markdown, but that can be changed by setting, ale_markdown_pandoc_options.
Diffstat (limited to 'test')
-rw-r--r--test/fixers/test_pandoc_fixer_callback.vader23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/fixers/test_pandoc_fixer_callback.vader b/test/fixers/test_pandoc_fixer_callback.vader
new file mode 100644
index 00000000..a364ee56
--- /dev/null
+++ b/test/fixers/test_pandoc_fixer_callback.vader
@@ -0,0 +1,23 @@
+Before:
+ Save g:ale_markdown_pandoc_executable
+ Save g:ale_markdown_pandoc_options
+
+After:
+ Restore
+
+Execute(The pandoc callback should return 'pandoc' as default command):
+ setlocal noexpandtab
+ Assert
+ \ ale#fixers#pandoc#Fix(bufnr('')).command =~# '^' . ale#Escape('pandoc'),
+ \ "Default command name is expected to be 'pandoc'"
+
+Execute(The pandoc executable and options should be configurable):
+ let g:ale_markdown_pandoc_executable = 'foobar'
+ let g:ale_markdown_pandoc_options = '--some-option'
+
+ AssertEqual
+ \ {
+ \ 'command': ale#Escape('foobar')
+ \ . ' --some-option',
+ \ },
+ \ ale#fixers#pandoc#Fix(bufnr(''))