diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-02-18 09:48:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-18 09:48:35 +0000 |
commit | 608b6dafd4cf6399f87670a9edf291b1261763d0 (patch) | |
tree | 11efd63052ce78a00627f6ba5abfda82b4510566 /test/handler | |
parent | 5972b9722370e95f48382fc1d696d17a9fa30c85 (diff) | |
parent | 716b46e10d2abe54daa09e876d4b7a6b56024ad0 (diff) | |
download | ale-608b6dafd4cf6399f87670a9edf291b1261763d0.zip |
Merge pull request #1343 from kevinkjt2000/ponyc
Add Support for Ponylang
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_pony_handler.vader | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/handler/test_pony_handler.vader b/test/handler/test_pony_handler.vader new file mode 100644 index 00000000..25a8254b --- /dev/null +++ b/test/handler/test_pony_handler.vader @@ -0,0 +1,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)', + \ ' ^', + \ ]) |