vimspector/tests/get_configurations.test.vim
2021-04-13 18:01:10 +01:00

22 lines
487 B
VimL

function! SetUp()
call vimspector#test#setup#SetUpWithMappings( v:none )
endfunction
function! ClearDown()
call vimspector#test#setup#ClearDown()
endfunction
function Test_Get_Configurations()
lcd ../support/test/csharp/
let configs = vimspector#GetConfigurations()
call assert_equal([
\ 'launch - netcoredbg',
\ 'launch - netcoredbg - with debug log',
\ 'launch - mono',
\ ], configs)
lcd -
%bwipe!
endfunction