summaryrefslogtreecommitdiff
path: root/test/fixers/test_clangformat_fixer_callback.vader
diff options
context:
space:
mode:
authorPaul Reimer <paul@p-rimes.net>2019-07-15 12:26:16 -0700
committerPaul Reimer <paul@p-rimes.net>2019-07-19 07:57:10 -0700
commitd25711a51686d45a2406c81163c144aeffda7033 (patch)
tree5aa2b1f08869058ac7ddb773a308f2607356d52a /test/fixers/test_clangformat_fixer_callback.vader
parentaae6d30b1ec135e37ec3bea1885d161c6174572b (diff)
downloadale-d25711a51686d45a2406c81163c144aeffda7033.zip
Set --assume-filename for clangformat fixer
Diffstat (limited to 'test/fixers/test_clangformat_fixer_callback.vader')
-rw-r--r--test/fixers/test_clangformat_fixer_callback.vader3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fixers/test_clangformat_fixer_callback.vader b/test/fixers/test_clangformat_fixer_callback.vader
index a55576bf..ae7db4cf 100644
--- a/test/fixers/test_clangformat_fixer_callback.vader
+++ b/test/fixers/test_clangformat_fixer_callback.vader
@@ -20,7 +20,7 @@ Execute(The clang-format callback should return the correct default values):
AssertEqual
\ {
\ 'command': ale#Escape(g:ale_c_clangformat_executable)
- \ . ' '
+ \ . ' --assume-filename=' . ale#Escape(bufname(bufnr('')))
\ },
\ ale#fixers#clangformat#Fix(bufnr(''))
@@ -31,6 +31,7 @@ Execute(The clangformat callback should include any additional options):
AssertEqual
\ {
\ 'command': ale#Escape(g:ale_c_clangformat_executable)
+ \ . ' --assume-filename=' . ale#Escape(bufname(bufnr('')))
\ . ' --some-option',
\ },
\ ale#fixers#clangformat#Fix(bufnr(''))