summaryrefslogtreecommitdiff
path: root/test/handler/test_bashate_handler.vader
diff options
context:
space:
mode:
authorHoracio Sanson <horacio@allm.net>2020-03-23 12:18:35 +0900
committerHoracio Sanson <horacio@allm.net>2020-03-23 12:18:35 +0900
commit7b9855f1fe811f4ec80bdeb81b5ab9b6d9249a49 (patch)
treecace14fc0780ed392140fc5bb8ada0f81d4d4e72 /test/handler/test_bashate_handler.vader
parentbbe5153fcb36dec9860ced33ae8ff0b5d76ac02a (diff)
downloadale-7b9855f1fe811f4ec80bdeb81b5ab9b6d9249a49.zip
Fix 2732 - Add bashate support
Diffstat (limited to 'test/handler/test_bashate_handler.vader')
-rw-r--r--test/handler/test_bashate_handler.vader36
1 files changed, 36 insertions, 0 deletions
diff --git a/test/handler/test_bashate_handler.vader b/test/handler/test_bashate_handler.vader
new file mode 100644
index 00000000..b61bb956
--- /dev/null
+++ b/test/handler/test_bashate_handler.vader
@@ -0,0 +1,36 @@
+Before:
+ runtime ale_linters/sh/bashate.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(The bashate handler should handle basic errors):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 777,
+ \ 'col': 1,
+ \ 'text': 'E003 Indent not multiple of 4',
+ \ },
+ \ {
+ \ 'lnum': 783,
+ \ 'col': 1,
+ \ 'text': 'E020 Function declaration not in format ^function name {$',
+ \ },
+ \ {
+ \ 'lnum': 786,
+ \ 'col': 1,
+ \ 'text': 'E010 The "do" should be on same line as for',
+ \ },
+ \ {
+ \ 'lnum': 791,
+ \ 'col': 1,
+ \ 'text': 'E006 Line too long',
+ \ },
+ \ ],
+ \ ale_linters#sh#bashate#Handle(bufnr(''), [
+ \ 'run:777:1: E003 Indent not multiple of 4',
+ \ 'run:783:1: E020 Function declaration not in format ^function name {$',
+ \ 'run:786:1: E010 The "do" should be on same line as for',
+ \ 'run:791:1: E006 Line too long',
+ \ ])