diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-12-16 13:17:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 13:17:52 +0000 |
commit | 13060a3492f9417831802c39808d70237b906ae1 (patch) | |
tree | fcb164bd6e265f878f6333e42d702ee166f6a97e /test/handler | |
parent | 2cfa09e02d65cd06649fb1ae5f988b7a110a124d (diff) | |
parent | 5052eca5cb59389275ff1341525214228bad324a (diff) | |
download | ale-13060a3492f9417831802c39808d70237b906ae1.zip |
Merge pull request #2136 from hsanson/368-chktex-latex-report-errors-from-wrong-file
Fix 368 - Lacheck reports errors from input{} files.
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_lacheck_handler.vader | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/handler/test_lacheck_handler.vader b/test/handler/test_lacheck_handler.vader new file mode 100644 index 00000000..0bcc3be8 --- /dev/null +++ b/test/handler/test_lacheck_handler.vader @@ -0,0 +1,36 @@ +Before: + runtime ale_linters/tex/lacheck.vim + call ale#test#SetDirectory('/testplugin/test') + +After: + call ale#linter#Reset() + call ale#test#RestoreDirectory() + +Execute(The lacheck handler should parse lines correctly): + + call ale#test#SetFilename('command_callback/tex_paths/sample1.tex') + + AssertEqual + \ [ + \ { + \ 'lnum': 1, + \ 'type': 'W', + \ 'text': 'perhaps you should insert a `~'' before "\ref"' + \ } + \ ], + \ ale_linters#tex#lacheck#Handle(bufnr(''), [ + \ "** sample1:", + \ "\"sample1.tex\", line 1: perhaps you should insert a `~' before \"\\ref\"" + \ ]) + +Execute(The lacheck handler should ignore errors from input files): + + call ale#test#SetFilename('ale_test.tex') + + AssertEqual + \ [ + \ ], + \ ale_linters#tex#lacheck#Handle(255, [ + \ "** ale_input:", + \ "\"ale_input.tex\", line 1: perhaps you should insert a `~' before \"\\ref\"" + \ ]) |