summaryrefslogtreecommitdiff
path: root/test/fixers/test_astyle_fixer_callback.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixers/test_astyle_fixer_callback.vader')
-rw-r--r--test/fixers/test_astyle_fixer_callback.vader13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/fixers/test_astyle_fixer_callback.vader b/test/fixers/test_astyle_fixer_callback.vader
index 2fc57ad0..9eb52788 100644
--- a/test/fixers/test_astyle_fixer_callback.vader
+++ b/test/fixers/test_astyle_fixer_callback.vader
@@ -21,3 +21,16 @@ Execute(The astyle callback should return the correct default values):
\ . ' %t',
\ },
\ ale#fixers#astyle#Fix(bufnr(''))
+
+Execute(The astyle callback should support cpp files):
+ call ale#test#SetFilename('../cpp_files/dummy.cpp')
+ let g:ale_cpp_astyle_executable = 'xxxinvalid'
+ set filetype=cpp " The test fails without this
+
+ AssertEqual
+ \ {
+ \ 'read_temporary_file': 1,
+ \ 'command': ale#Escape('xxxinvalid')
+ \ . ' %t',
+ \ },
+ \ ale#fixers#astyle#Fix(bufnr(''))