summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjhlink <jhlink@users.noreply.github.com>2020-07-28 23:29:19 -0400
committerjhlink <jhlink@users.noreply.github.com>2020-07-28 23:29:19 -0400
commitf4cff3bc06e35a1d5861972d9e1cea615255e989 (patch)
tree9f39265c52f925aaf6501e15b77821545440e4ba
parent7d40d0a16f29370f68fafe4c4814796e4eb260a0 (diff)
downloadale-f4cff3bc06e35a1d5861972d9e1cea615255e989.zip
test: Set empty values for astyle project_options
-rw-r--r--test/fixers/test_astyle_fixer_callback.vader7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/fixers/test_astyle_fixer_callback.vader b/test/fixers/test_astyle_fixer_callback.vader
index f64c6784..60a18213 100644
--- a/test/fixers/test_astyle_fixer_callback.vader
+++ b/test/fixers/test_astyle_fixer_callback.vader
@@ -1,10 +1,13 @@
Before:
Save g:ale_c_astyle_executable
Save g:ale_c_astyle_project_options
+ Save g:ale_cpp_astyle_project_options
" Use an invalid global executable, so we don't match it.
let g:ale_c_astyle_executable = 'xxxinvalid'
let g:ale_cpp_astyle_executable = 'invalidpp'
+ let g:ale_c_astyle_project_options = ''
+ let g:ale_cpp_astyle_project_options = ''
call ale#test#SetDirectory('/testplugin/test/fixers')
@@ -14,6 +17,8 @@ After:
call ale#test#RestoreDirectory()
Execute(The astyle callback should return the correct default values):
+ " Because this file doesn't exist, no astylrc config
+ " exists near it. Therefore, project_options is empty.
call ale#test#SetFilename('../c_files/testfile.c')
AssertEqual
@@ -24,6 +29,8 @@ Execute(The astyle callback should return the correct default values):
\ ale#fixers#astyle#Fix(bufnr(''))
Execute(The astyle callback should support cpp files):
+ " Because this file doesn't exist, no astylrc config
+ " exists near it. Therefore, project_options is empty.
call ale#test#SetFilename('../cpp_files/dummy.cpp')
set filetype=cpp " The test fails without this