diff options
author | w0rp <devw0rp@gmail.com> | 2018-05-15 18:01:32 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-05-15 18:01:49 +0100 |
commit | c1da7866d09be76886bd3d591949b327538a4315 (patch) | |
tree | 950f79daa0c77c3b55116b8ea4025cebece11632 /test | |
parent | c23acb00e27f14ba9c65a16a636e222e1ef082ff (diff) | |
download | ale-c1da7866d09be76886bd3d591949b327538a4315.zip |
Fix #1584 - Make duplicate msgfmt messages easier to navigate
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_msgfmt_hander.vader | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/handler/test_msgfmt_hander.vader b/test/handler/test_msgfmt_hander.vader new file mode 100644 index 00000000..1a67dbc6 --- /dev/null +++ b/test/handler/test_msgfmt_hander.vader @@ -0,0 +1,24 @@ +Before: + runtime ale_linters/po/msgfmt.vim + +After: + call ale#linter#Reset() + +Execute(Duplicate messages should be made easier to navigate): + AssertEqual + \ [ + \ {'lnum': 14, 'col': 0, 'type': 'W', 'text': 'some other thing'}, + \ {'lnum': 1746, 'col': 0, 'type': 'W', 'text': 'duplicate of message at line 262'}, + \ {'lnum': 262, 'col': 0, 'type': 'W', 'text': 'first location of duplicate of message at line 1746'}, + \ {'lnum': 666, 'col': 0, 'type': 'W', 'text': 'duplicate message definition...'}, + \ {'lnum': 888, 'col': 0, 'type': 'W', 'text': 'some other thing'}, + \ {'lnum': 999, 'col': 0, 'type': 'W', 'text': '...this is the location of the first definition'}, + \ ], + \ ale_linters#po#msgfmt#Handle(bufnr(''), [ + \ '/tmp/v6GMUFf/16/foo.po:14: some other thing', + \ '/tmp/v6GMUFf/16/foo.po:1746: duplicate message definition...', + \ '/tmp/v6GMUFf/16/foo.po:262: ...this is the location of the first definition', + \ '/tmp/v6GMUFf/16/foo.po:666: duplicate message definition...', + \ '/tmp/v6GMUFf/16/foo.po:888: some other thing', + \ '/tmp/v6GMUFf/16/foo.po:999: ...this is the location of the first definition', + \ ]) |