summaryrefslogtreecommitdiff
path: root/test/fixers/test_stylua_fixer_callback.vader
blob: 8621c498cf793ab415f75d3d1d1a90e8f2e03359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Before:
  call ale#assert#SetUpFixerTest('lua', 'stylua')

After:
  call ale#assert#TearDownFixerTest()

Execute(The default command should be correct):
  AssertFixer {'command': ale#Escape('stylua') . ' -'}

Execute(The stylua callback should include custom stylua options):
  let g:ale_lua_stylua_executable = 'xxxinvalid'
  let g:ale_lua_stylua_options = '--search-parent-directories'

  AssertFixer
  \ {
  \   'command': ale#Escape('xxxinvalid')
  \     . ' ' . g:ale_lua_stylua_options
  \     . ' -',
  \ }