chore: Delete dead test code

This commit is contained in:
jhlink 2020-07-28 23:26:49 -04:00
parent 5377272d20
commit a9b2f6362d
1 changed files with 0 additions and 5 deletions

View File

@ -15,7 +15,6 @@ After:
Execute(The astyle callback should return the correct default values):
call ale#test#SetFilename('../c_files/testfile.c')
let targetfile = '/testplugin/test/c_files/testfile.c'
AssertEqual
\ {
@ -26,7 +25,6 @@ Execute(The astyle callback should return the correct default values):
Execute(The astyle callback should support cpp files):
call ale#test#SetFilename('../cpp_files/dummy.cpp')
let targetfile = '/testplugin/test/cpp_files/dummy.cpp'
set filetype=cpp " The test fails without this
AssertEqual
@ -39,7 +37,6 @@ Execute(The astyle callback should support cpp files):
Execute(The astyle callback should support cpp files with option file set):
call ale#test#SetFilename('../cpp_files/dummy.cpp')
let g:ale_cpp_astyle_project_options = '.astylerc_cpp'
let targetfile = '/testplugin/test/cpp_files/dummy.cpp'
set filetype=cpp " The test fails without this
AssertEqual
@ -50,10 +47,8 @@ Execute(The astyle callback should support cpp files with option file set):
\ },
\ ale#fixers#astyle#Fix(bufnr(''))
Execute(The astyle callback should return the correct default values with an option file set):
call ale#test#SetFilename('../c_files/testfile.c')
let targetfile = '/testplugin/test/c_files/testfile.c'
let g:ale_c_astyle_project_options = '.astylerc'
AssertEqual