summaryrefslogtreecommitdiff
path: root/test/test_ale_lint_stop_command.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_ale_lint_stop_command.vader')
-rw-r--r--test/test_ale_lint_stop_command.vader27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/test_ale_lint_stop_command.vader b/test/test_ale_lint_stop_command.vader
new file mode 100644
index 00000000..c50db5a8
--- /dev/null
+++ b/test/test_ale_lint_stop_command.vader
@@ -0,0 +1,27 @@
+Before:
+ Save g:ale_buffer_info
+
+ let g:ale_buffer_info = {}
+
+ call ale#linter#PreventLoading('testft')
+ call ale#linter#Define('testft', {
+ \ 'name': 'testlinter',
+ \ 'callback': {-> []},
+ \ 'executable': has('win32') ? 'cmd' : 'true',
+ \ 'command': 'sleep 9001',
+ \})
+
+After:
+ Restore
+
+ call ale#linter#Reset()
+
+Given testft (An empty file):
+Execute(ALELintStop should stop ALE from linting):
+ ALELint
+
+ Assert ale#engine#IsCheckingBuffer(bufnr('')), 'ALE did not start checking the buffer'
+
+ ALELintStop
+
+ Assert !ale#engine#IsCheckingBuffer(bufnr('')), 'ALELintStop didn''t work'