diff options
Diffstat (limited to 'test/command_callback/test_ada_gcc_command_callbacks.vader')
-rw-r--r-- | test/command_callback/test_ada_gcc_command_callbacks.vader | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/test/command_callback/test_ada_gcc_command_callbacks.vader b/test/command_callback/test_ada_gcc_command_callbacks.vader deleted file mode 100644 index 906b31a4..00000000 --- a/test/command_callback/test_ada_gcc_command_callbacks.vader +++ /dev/null @@ -1,42 +0,0 @@ -Before: - call ale#assert#SetUpLinterTest('ada', 'gcc') - call ale#test#SetFilename('dummy.adb') - - function! GetOutputDir(command) abort - let l:split_command = split(a:command) - let l:index = index(l:split_command, '-o') - return l:split_command[l:index + 1] - endfunction - - let b:out_file = GetOutputDir(ale_linters#ada#gcc#GetCommand(bufnr(''))) - -After: - delfunction GetOutputDir - - unlet! b:out_file - - call ale#assert#TearDownLinterTest() - -Execute(The executable should be configurable): - AssertLinter 'gcc', - \ ale#Escape('gcc') . ' -x ada -c -gnatc' - \ . ' -o ' . b:out_file - \ . ' -I %s:h' - \ . ' -gnatwa -gnatq %t' - - let b:ale_ada_gcc_executable = 'foo' - - AssertLinter 'foo', - \ ale#Escape('foo') . ' -x ada -c -gnatc' - \ . ' -o ' . b:out_file - \ . ' -I %s:h' - \ . ' -gnatwa -gnatq %t' - -Execute(The options should be configurable): - let g:ale_ada_gcc_options = '--foo --bar' - - AssertLinter 'gcc', - \ ale#Escape('gcc') . ' -x ada -c -gnatc' - \ . ' -o ' . b:out_file - \ . ' -I %s:h' - \ . ' --foo --bar %t' |