diff options
author | Horacio Sanson <hsanson@gmail.com> | 2021-01-13 14:04:58 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-13 14:04:58 +0900 |
commit | 012348582c72716c8712e65d2c8456b1c3c2b42c (patch) | |
tree | 6ec3bf4046f55f428029d923c758f1c7f1eba419 /test/command_callback | |
parent | 12d28ca34f50f2c359ac71e349d41bd1a43a5f3a (diff) | |
parent | 62f2c6d3261af41ef01db6868724881fd6eebccc (diff) | |
download | ale-012348582c72716c8712e65d2c8456b1c3c2b42c.zip |
Merge pull request #3531 from pinicarus/custom-erlc-executable
Custom erlc executable
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_erlang_erlc_command_callback.vader | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/command_callback/test_erlang_erlc_command_callback.vader b/test/command_callback/test_erlang_erlc_command_callback.vader new file mode 100644 index 00000000..7d659a07 --- /dev/null +++ b/test/command_callback/test_erlang_erlc_command_callback.vader @@ -0,0 +1,40 @@ +Before: + call ale#assert#SetUpLinterTest('erlang', 'erlc') + +After: + call ale#assert#TearDownLinterTest() + +Execute(The default command should be correct.): + let g:cmd = ale_linters#erlang#erlc#GetCommand(bufnr('')) + let g:regex = 'erlc.\+-o.\+%t' + let g:matched = match(g:cmd, g:regex) + + " match returns -1 if not found + AssertNotEqual + \ g:matched, + \ -1, + \ 'Command error: expected [' . g:cmd . '] to match [' . g:regex . ']' + +Execute(The command should accept configured executable.): + let b:ale_erlang_erlc_executable = '/usr/bin/erlc' + let g:cmd = ale_linters#erlang#erlc#GetCommand(bufnr('')) + let g:regex = '/usr/bin/erlc.\+-o.\+%t' + let g:matched = match(g:cmd, g:regex) + + " match returns -1 if not found + AssertNotEqual + \ g:matched, + \ -1, + \ 'Command error: expected [' . g:cmd . '] to match [' . g:regex . ']' + +Execute(The command should accept configured options.): + let b:ale_erlang_erlc_options = '-I include' + let g:cmd = ale_linters#erlang#erlc#GetCommand(bufnr('')) + let g:regex = 'erlc.\+-o.\+-I include.\+%t' + let g:matched = match(g:cmd, g:regex) + + " match returns -1 if not found + AssertNotEqual + \ g:matched, + \ -1, + \ 'Command error: expected [' . g:cmd . '] to match [' . g:regex . ']' |