ale/test/handler/test_gitlablint_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

35 lines
927 B
Plaintext

Before:
runtime! ale_linters/yaml/gitlablint.vim
After:
call ale#linter#Reset()
Execute(Problems should be parsed correctly for gitlablint):
AssertEqual
\ [
\ {
\ 'lnum': 0,
\ 'col': 0,
\ 'type': 'E',
\ 'text': 'root config contains unknown keys: efore_script',
\ },
\ {
\ 'lnum': 77,
\ 'col': 3,
\ 'type': 'E',
\ 'text': '(<unknown>): could not find expected : while scanning a simple key',
\ },
\ {
\ 'lnum': 0,
\ 'col': 0,
\ 'type': 'E',
\ 'text': 'build:dev:rest job: undefined need: chck:dev',
\ },
\ ],
\ ale_linters#yaml#gitlablint#Handle(bufnr(''), [
\ 'GitLab CI configuration is invalid',
\ 'root config contains unknown keys: efore_script',
\ '(<unknown>): could not find expected : while scanning a simple key at line 77 column 3',
\ 'build:dev:rest job: undefined need: chck:dev',
\ ])