summaryrefslogtreecommitdiff
path: root/test/test_linting_sets_signs.vader
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2016-10-25 16:02:47 +0100
committerGitHub <noreply@github.com>2016-10-25 16:02:47 +0100
commit60762d501872ec159c8851741f9435aa1bbf491b (patch)
tree7989e480c1a58b5a0456e370204eb054f57360ee /test/test_linting_sets_signs.vader
parent222d9e69083c7f068714901bd163ca18b8450de3 (diff)
parent73c9a1f96539481536de56fa2bd4c005c1af15ed (diff)
downloadale-60762d501872ec159c8851741f9435aa1bbf491b.zip
Merge pull request #143 from w0rp/better-buffer-cleanup
Stop jobs when buffers close
Diffstat (limited to 'test/test_linting_sets_signs.vader')
-rw-r--r--test/test_linting_sets_signs.vader39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/test_linting_sets_signs.vader b/test/test_linting_sets_signs.vader
new file mode 100644
index 00000000..e96e490b
--- /dev/null
+++ b/test/test_linting_sets_signs.vader
@@ -0,0 +1,39 @@
+Given javascript (Some JavaScript with problems):
+ var y = 3+3;
+ var y = 3
+
+Before:
+ sign unplace *
+ let g:actual_sign_list = []
+ let g:expected_sign_list = [
+ \ ['1', 'ALEWarningSign'],
+ \ ['2', 'ALEErrorSign'],
+ \]
+
+ function! g:CollectSigns()
+ redir => l:output
+ silent exec 'sign place'
+ redir END
+
+ for l:line in split(l:output, "\n")
+ let l:match = matchlist(l:line, 'line=\(\d\+\).*name=\(ALE[a-zA-Z]\+\)')
+
+ if len(l:match) > 0
+ call add(g:actual_sign_list, [l:match[1], l:match[2]])
+ endif
+ endfor
+ endfunction
+
+After:
+ sign unplace *
+ let g:ale_buffer_info = {}
+ delfunction g:CollectSigns
+ unlet g:actual_sign_list
+ unlet g:expected_sign_list
+
+Execute(The signs should be updated after linting is done):
+ call ale#Lint()
+ call ale#engine#WaitForJobs(2000)
+ call g:CollectSigns()
+
+ AssertEqual g:expected_sign_list, g:actual_sign_list