summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorP M <10617122+pylipp@users.noreply.github.com>2018-04-05 21:09:41 +0200
committerw0rp <w0rp@users.noreply.github.com>2018-04-05 21:09:41 +0200
commit85a2a008266f69847a3c7a9d38c16b779636ab30 (patch)
tree19504abe11cf715dadef67e613cbcb00ad604919 /test/handler
parent912f632bf591377a69bf688f6a85668d93be8841 (diff)
downloadale-85a2a008266f69847a3c7a9d38c16b779636ab30.zip
Integration of qmlfmt linting tool (#1462)
* Add first qmlfmt support * Add GetCommand() function - pass --error/-e option * Add handle unittest - fix pattern regex - store col as integer * Update docs * Add command callback unit test
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_qmlfmt_handler.vader19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/handler/test_qmlfmt_handler.vader b/test/handler/test_qmlfmt_handler.vader
new file mode 100644
index 00000000..fc8ef355
--- /dev/null
+++ b/test/handler/test_qmlfmt_handler.vader
@@ -0,0 +1,19 @@
+Before:
+ runtime ale_linters/qml/qmlfmt.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(The qmlfmt handler should parse error messages correctly):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 22,
+ \ 'col': 1,
+ \ 'type': 'E',
+ \ 'text': 'Expected token ''}''.'
+ \ }
+ \ ],
+ \ ale_linters#qml#qmlfmt#Handle(1, [
+ \ 'Error:22:1: Expected token ''}''.'
+ \ ])