summaryrefslogtreecommitdiff
path: root/test/linter/test_ispc_ispc.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/linter/test_ispc_ispc.vader')
-rw-r--r--test/linter/test_ispc_ispc.vader14
1 files changed, 4 insertions, 10 deletions
diff --git a/test/linter/test_ispc_ispc.vader b/test/linter/test_ispc_ispc.vader
index f1aeb2f8..9d91da8d 100644
--- a/test/linter/test_ispc_ispc.vader
+++ b/test/linter/test_ispc_ispc.vader
@@ -4,17 +4,11 @@ Before:
After:
call ale#assert#TearDownLinterTest()
-Execute(The executable should be configurable):
- AssertLinter 'ispc',
- \ ale#Escape('ispc') . ' --nowrap %s'
+Execute(The default ispc command should be configurable):
+ AssertLinter 'ispc', ale#Escape('ispc') . ' --nowrap %s'
+Execute(The ispc executable nad options should be configurable):
let b:ale_ispc_ispc_executable = 'foo'
-
- AssertLinter 'foo',
- \ ale#Escape('foo') . ' --nowrap %s'
-
-Execute(The options should be configurable):
let g:ale_ispc_ispc_options = '--foo'
- AssertLinter 'ispc',
- \ ale#Escape('ispc') . ' --nowrap --foo' . ' %s'
+ AssertLinter 'foo', ale#Escape('foo') . ' --nowrap --foo' . ' %s'