ale/test/handler/test_avra_handler.vader
Utkarsh Verma 1e0e76bf96
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
2021-11-15 19:41:03 +09:00

25 lines
534 B
Plaintext

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"
\ ])