Files
ale/test/handler/test_scala_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
772 B
Plaintext

Execute(The handler should return an empty list with empty input):
AssertEqual [], ale#handlers#scala#HandleScalacLintFormat(bufnr(''), [])
Execute(The handler should correctly parse error messages):
AssertEqual
\ [
\ {
\ 'lnum': 4,
\ 'col': 8,
\ 'text': ''':'' expected but identifier found.',
\ 'type': 'E'
\ },
\ {
\ 'lnum': 6,
\ 'col': 2,
\ 'text': 'identifier expected but eof found.',
\ 'type': 'E'
\ }
\ ],
\ ale#handlers#scala#HandleScalacLintFormat(bufnr(''),
\ [
\ "hi.scala:4: error: ':' expected but identifier found.",
\ " Some stupid scala code",
\ " ^",
\ "hi.scala:6: error: identifier expected but eof found.",
\ ")",
\ " ^",
\ "two errors found",
\ ])