summaryrefslogtreecommitdiff
path: root/test/linter/test_markdown_markdownlint.vader
blob: 7ec626ee2d3fb9e717ef73ba9faa44c20b8771c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Before:
  call ale#assert#SetUpLinterTest('markdown', 'markdownlint')

After:
  call ale#assert#TearDownLinterTest()

Execute(The default markdownlint command should be correct):
  AssertLinter 'markdownlint', ale#Escape('markdownlint') . ' %s'

Execute(The executable should be configurable):
  let g:ale_markdown_markdownlint_executable = 'foo bar'
  let g:ale_markdown_markdownlint_options = '--option'

  AssertLinter 'foo bar', ale#Escape('foo bar') . ' --option %s'