diff options
author | Utkarsh Verma <utkarshverma@protonmail.com> | 2021-11-15 16:11:03 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 19:41:03 +0900 |
commit | 1e0e76bf9619a3ce21663165283f9971556c95b3 (patch) | |
tree | f54e5099ef6b248502a039e07d840348c3a9a05a /test/handler | |
parent | 76c2293e68a6cad3b192062743d25b8daa082205 (diff) | |
download | ale-1e0e76bf9619a3ce21663165283f9971556c95b3.zip |
Add support for AVRA linting (#3950)
* Add support for AVRA linting
* Add tests for AVRA linting and improve code
* Fix test
* Fix warning detection
* Fix test
* Fix test
* Add AVRA as a supported language in docs
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_avra_handler.vader | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/handler/test_avra_handler.vader b/test/handler/test_avra_handler.vader new file mode 100644 index 00000000..0de83fb8 --- /dev/null +++ b/test/handler/test_avra_handler.vader @@ -0,0 +1,24 @@ +Before: + runtime ale_linters/avra/avra.vim + +After: + call ale#linter#Reset() + +Execute(The avra handler should parse errors correctly): + AssertEqual + \ [ + \ { + \ 'lnum': 3, + \ 'text': "Unknown device: atmega3228p", + \ 'type': 'E' + \ }, + \ { + \ 'lnum': 12, + \ 'text': "Unknown directive: .EQ", + \ 'type': 'E' + \ } + \ ], + \ ale_linters#avra#avra#Handle(bufnr(''), [ + \ "main.asm(3) : Error : Unknown device: atmega3228p", + \ "main.asm(12) : Error : Unknown directive: .EQ" + \ ]) |