summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCyril Roelandt <tipecaml@gmail.com>2018-11-01 18:20:48 +0100
committerCyril Roelandt <tipecaml@gmail.com>2018-11-01 18:52:28 +0100
commitf34c089685d1437f523e9c947c06b402f12c4b95 (patch)
tree48ddd88a98fd89747be573c61f688f7f65a3d052 /test
parent4b841b55869e3ec5b02806f9b2fe962ffdca2750 (diff)
downloadale-f34c089685d1437f523e9c947c06b402f12c4b95.zip
PHP linter: make the path to the executable configurable
Fixes #1388
Diffstat (limited to 'test')
-rw-r--r--test/command_callback/test_php_command_callback.vader14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/command_callback/test_php_command_callback.vader b/test/command_callback/test_php_command_callback.vader
new file mode 100644
index 00000000..81e13f93
--- /dev/null
+++ b/test/command_callback/test_php_command_callback.vader
@@ -0,0 +1,14 @@
+Before:
+ call ale#assert#SetUpLinterTest('php', 'php')
+ let b:command_tail = ' -l -d error_reporting=E_ALL -d display_errors=1'
+ \ . ' -d log_errors=0 --'
+
+After:
+ call ale#assert#TearDownLinterTest()
+
+Execute(The executable should be configurable):
+ AssertLinter 'php', ale#Escape('php') . b:command_tail
+
+ let b:ale_php_php_executable = '/path/to/php'
+
+ AssertLinter '/path/to/php', ale#Escape('/path/to/php') . b:command_tail