File: test_pony_handler.vader

package info (click to toggle)
vim-ale 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,764 kB
  • sloc: sh: 499; python: 311; perl: 31; makefile: 4; xml: 4; javascript: 1
file content (21 lines) | stat: -rw-r--r-- 704 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Execute(The pony handler should handle ponyc output):
  call ale#test#SetFilename('foo.pony')

  AssertEqual
  \ [
  \   {
  \     'filename': '/home/projects/Wombat.pony',
  \     'lnum': 22,
  \     'type': 'E',
  \     'col': 30,
  \     'text': 'can''t lookup private fields from outside the type',
  \   },
  \ ],
  \ ale#handlers#pony#HandlePonycFormat(bufnr(''), [
  \ 'Building builtin -> /usr/lib/pony/0.21.3/packages/builtin',
  \ 'Building . -> /home/projects',
  \ 'Error:',
  \ '/home/projects/Wombat.pony:22:30: can''t lookup private fields from outside the type',
  \ '                env.out.print(defaultWombat._hunger_level)',
  \ '                                           ^',
  \ ])