summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorTy-Lucas Kelley <tylucaskelley@gmail.com>2018-03-03 19:32:32 -0500
committerTy-Lucas Kelley <tylucaskelley@gmail.com>2018-03-03 19:32:32 -0500
commit32091fb8ad01d46084305100f4aa074114141516 (patch)
treedcf44ac82e8c7d8db3adf697408a2ff1476349bd /test/handler
parentc572cfd2d2ea9449b51fa7009df78f0a5ce77b96 (diff)
downloadale-32091fb8ad01d46084305100f4aa074114141516.zip
add test for markdownlint hander
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_markdownlint_handler.vader24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/handler/test_markdownlint_handler.vader b/test/handler/test_markdownlint_handler.vader
new file mode 100644
index 00000000..db6acc66
--- /dev/null
+++ b/test/handler/test_markdownlint_handler.vader
@@ -0,0 +1,24 @@
+Before:
+ runtime ale_linters/markdown/markdownlint.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(The Markdownlint handler should parse output correctly):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 1,
+ \ 'text': '(MD002/first-header-h1) First header should be a top level header [Expected: h1; Actual: h2]',
+ \ 'type': 'W'
+ \ },
+ \ {
+ \ 'lnum': 298,
+ \ 'text': '(MD033/no-inline-html) Inline HTML [Element: p]',
+ \ 'type': 'W'
+ \ }
+ \ ],
+ \ ale#handlers#markdownlint#Handle(0, [
+ \ 'README.md: 1: MD002/first-header-h1 First header should be a top level header [Expected: h1; Actual: h2]',
+ \ 'README.md: 298: MD033/no-inline-html Inline HTML [Element: p]'
+ \ ])