summaryrefslogtreecommitdiff
path: root/test/command_callback
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2018-09-26 15:38:15 +0100
committerGitHub <noreply@github.com>2018-09-26 15:38:15 +0100
commit58ceb21cbc10a05f376664da31c8d7621e6d3669 (patch)
tree838f66cea354fcec1861c4b2a5923ea0a1af8815 /test/command_callback
parent143c3cd09f52996c90b78059275a400d3c2327b0 (diff)
parentbd32b7c856937cfe8dae67907b9bde19b6bccb80 (diff)
downloadale-58ceb21cbc10a05f376664da31c8d7621e6d3669.zip
Merge pull request #1908 from KtorZ/master
Allow extra options to be passed to haskell:hlint
Diffstat (limited to 'test/command_callback')
-rw-r--r--test/command_callback/test_haskell_hlint_command_callbacks.vader16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/command_callback/test_haskell_hlint_command_callbacks.vader b/test/command_callback/test_haskell_hlint_command_callbacks.vader
new file mode 100644
index 00000000..fb354ed4
--- /dev/null
+++ b/test/command_callback/test_haskell_hlint_command_callbacks.vader
@@ -0,0 +1,16 @@
+Before:
+ call ale#assert#SetUpLinterTest('haskell', 'hlint')
+ let b:base_opts = '--color=never --json -'
+
+After:
+ unlet! b:base_opts
+ call ale#assert#TearDownLinterTest()
+
+Execute(executable should be configurable):
+ AssertLinter 'hlint', ale#Escape('hlint') . ' ' . b:base_opts
+ let b:ale_haskell_hlint_executable = 'myHlint'
+ AssertLinter 'myHlint', ale#Escape('myHlint') . ' ' . b:base_opts
+
+Execute(should accept options):
+ let b:ale_haskell_hlint_options= '-h myhlintfile.yaml'
+ AssertLinter 'hlint', ale#Escape('hlint') . ' -h myhlintfile.yaml ' . b:base_opts