test(erlang/erlc): make quotes optional in matches

This commit is contained in:
pinicarus 2020-10-28 12:51:38 +01:00
parent 15f44933c2
commit 7d69cdf4ad
No known key found for this signature in database
GPG Key ID: BED1B8A689160C89
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ After:
Execute(The default command should be correct.):
let g:cmd = ale_linters#erlang#erlc#GetCommand(bufnr(''))
let g:regex = '^''erlc''\s\+-o\s\+[^\s]\+\s\+%t'
let g:regex = '^''\?erlc''\?\s\+-o\s\+[^\s]\+\s\+%t'
let g:matched = match(g:cmd, g:regex)
" match returns -1 if not found
@ -18,7 +18,7 @@ Execute(The default command should be correct.):
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''\s\+-o\s\+[^\s]\+\s\+%t'
let g:regex = '^''\?/usr/bin/erlc''\?\s\+-o\s\+[^\s]\+\s\+%t'
let g:matched = match(g:cmd, g:regex)
" match returns -1 if not found
@ -30,7 +30,7 @@ Execute(The command should accept configured executable.):
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''\s\+-o\s\+[^\s]\+\s\+-I include\s\+%t'
let g:regex = '^''\?erlc''\?\s\+-o\s\+[^\s]\+\s\+-I include\s\+%t'
let g:matched = match(g:cmd, g:regex)
" match returns -1 if not found