summaryrefslogtreecommitdiff
path: root/test/test_typecheck_handler.vader
diff options
context:
space:
mode:
authorChris Paul <chrispetrunoff@me.com>2017-02-21 12:32:38 -0800
committerw0rp <w0rp@users.noreply.github.com>2017-02-21 20:32:37 +0000
commitfef3276f34d05d30ce6127893816e2afa853023d (patch)
tree01dc82d0f4f531cd9d230c914a284c39431fd673 /test/test_typecheck_handler.vader
parent6a02c5812c5ef5e49f56beffaad8a8894bdc7c2e (diff)
downloadale-fef3276f34d05d30ce6127893816e2afa853023d.zip
escape dot in maker regex (#357)
* escape dot in maker regex * Create test_typecheck_handler * Rename test_typecheck_handler to test_typecheck_handler.vader
Diffstat (limited to 'test/test_typecheck_handler.vader')
-rw-r--r--test/test_typecheck_handler.vader31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/test_typecheck_handler.vader b/test/test_typecheck_handler.vader
new file mode 100644
index 00000000..2f8a219b
--- /dev/null
+++ b/test/test_typecheck_handler.vader
@@ -0,0 +1,31 @@
+Execute(The typecheck handler should parse lines correctly):
+ runtime ale_linters/typescript/typecheck.vim
+
+ AssertEqual
+ \ [
+ \ {
+ \ 'bufnr': 347,
+ \ 'lnum': 16,
+ \ 'vcol': 0,
+ \ 'col': 7,
+ \ 'text': "Type 'A' is not assignable to type 'B'",
+ \ 'type': 'E',
+ \ 'nr': -1,
+ \ },
+ \ {
+ \ 'bufnr': 347,
+ \ 'lnum': 7,
+ \ 'vcol': 0,
+ \ 'col': 41,
+ \ 'text': "Property 'a' does not exist on type 'A'",
+ \ 'type': 'E',
+ \ 'nr': -1,
+ \ },
+ \ ],
+ \ ale_linters#typescript#typecheck#Handle(347, [
+ \ "somets.ts[16, 7]: Type 'A' is not assignable to type 'B'",
+ \ "somets.ts[7, 41]: Property 'a' does not exist on type 'A'",
+ \ ])
+
+After:
+ call ale#linter#Reset()