Files
ale/test/handler/test_dogma_handler.vader
w0rp ae1d051504 #4454 Clean up more tests and code
* Remove some tests we no longer need
* Delete blocks of redundant code
* Compress some tests together to simplify them
* Remove a little code for ancient linter versions
* Escape more executables we didn't escape before
* Rename a deno option that didn't match our conventions
2023-09-16 22:23:30 +01:00

30 lines
614 B
Plaintext

Before:
runtime ale_linters/elixir/dogma.vim
After:
call ale#linter#Reset()
Execute(The dogma handler should parse lines correctly):
AssertEqual
\ [
\ {
\ 'bufnr': 347,
\ 'lnum': 18,
\ 'col': 5,
\ 'text': 'Some error',
\ 'type': 'E',
\ },
\ {
\ 'bufnr': 347,
\ 'lnum': 19,
\ 'col': 7,
\ 'text': 'Some warning',
\ 'type': 'W',
\ },
\ ],
\ ale_linters#elixir#dogma#Handle(347, [
\ 'This line should be ignored completely',
\ 'lib/filename.ex:18:5: C: Some error',
\ 'lib/filename.ex:19:7: R: Some warning',
\ ])