diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_loclist_corrections.vader | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/test_loclist_corrections.vader b/test/test_loclist_corrections.vader index e6844d8e..6224d608 100644 --- a/test/test_loclist_corrections.vader +++ b/test/test_loclist_corrections.vader @@ -327,3 +327,24 @@ Execute(FixLocList should interpret temporary filenames as being the current buf \ {'text': 'a', 'lnum': 3, 'filename': b:temp_name}, \ ], \ ) + +Execute(The error code should be passed on): + AssertEqual + \ [ + \ { + \ 'text': 'a', + \ 'lnum': 10, + \ 'col': 0, + \ 'bufnr': bufnr('%'), + \ 'vcol': 0, + \ 'type': 'E', + \ 'nr': -1, + \ 'linter_name': 'foobar', + \ 'code': 'some-code' + \ }, + \], + \ ale#engine#FixLocList( + \ bufnr('%'), + \ 'foobar', + \ [{'text': 'a', 'lnum': 11, 'code': 'some-code'}], + \ ) |