diff options
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_gitlint_handler.vader | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/handler/test_gitlint_handler.vader b/test/handler/test_gitlint_handler.vader index 58f5e67d..73ee988f 100644 --- a/test/handler/test_gitlint_handler.vader +++ b/test/handler/test_gitlint_handler.vader @@ -10,22 +10,26 @@ Execute(The gitlint handler should handle basic warnings and syntax errors): \ { \ 'lnum': 1, \ 'type': 'E', - \ 'text': 'B6: Body message is missing', + \ 'text': 'Body message is missing', + \ 'code': 'B6', \ }, \ { \ 'lnum': 2, \ 'type': 'E', - \ 'text': 'B4: Second line is not empty: "to send to upstream"', + \ 'text': 'Second line is not empty: "to send to upstream"', + \ 'code': 'B4', \ }, \ { \ 'lnum': 3, \ 'type': 'E', - \ 'text': 'B5: Body message is too short (19<20): "to send to upstream"', + \ 'text': 'Body message is too short (19<20): "to send to upstream"', + \ 'code': 'B5', \ }, \ { \ 'lnum': 8, \ 'type': 'E', - \ 'text': 'T1: Title exceeds max length (92>72): "some very long commit subject line where the author can''t wait to explain what he just fixed"' + \ 'text': 'Title exceeds max length (92>72): "some very long commit subject line where the author can''t wait to explain what he just fixed"', + \ 'code': 'T1', \ }, \ ], \ ale_linters#gitcommit#gitlint#Handle(1, [ |