summaryrefslogtreecommitdiff
path: root/test/command_callback/test_ispc_ispc_command_callbacks.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/command_callback/test_ispc_ispc_command_callbacks.vader')
-rw-r--r--test/command_callback/test_ispc_ispc_command_callbacks.vader27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/command_callback/test_ispc_ispc_command_callbacks.vader b/test/command_callback/test_ispc_ispc_command_callbacks.vader
new file mode 100644
index 00000000..e5a0dec2
--- /dev/null
+++ b/test/command_callback/test_ispc_ispc_command_callbacks.vader
@@ -0,0 +1,27 @@
+Before:
+ call ale#assert#SetUpLinterTest('ispc', 'ispc')
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The executable should be configurable):
+ AssertLinter 'ispc',
+ \ ale#Escape('ispc')
+ \ . ' -I ' . ale#Escape(getcwd())
+ \ . ' -'
+
+ let b:ale_ispc_ispc_executable = 'foo'
+
+ AssertLinter 'foo',
+ \ ale#Escape('foo')
+ \ . ' -I ' . ale#Escape(getcwd())
+ \ . ' -'
+
+Execute(The options should be configurable):
+ let g:ale_ispc_ispc_options = '--foo'
+
+ AssertLinter 'ispc',
+ \ ale#Escape('ispc')
+ \ . ' -I ' . ale#Escape(getcwd())
+ \ . ' --foo'
+ \ . ' -'