summaryrefslogtreecommitdiff
path: root/test/fixers/test_bibclean_fixer_callback.vader
blob: 88412ecab00ba29c245661b664cc1dbd33df2562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Before:
  Save g:ale_bib_bibclean_executable
  Save g:ale_bib_bibclean_options

  let g:ale_bib_bibclean_executable = 'xxxinvalid'
  let g:ale_bib_bibclean_options = '-align-equals'

  call ale#test#SetDirectory('/testplugin/test/fixers')

After:
  Restore
  call ale#test#RestoreDirectory()

Execute(The bibclean callback should return the correct default values):
  call ale#test#SetFilename('../test-files/bib/dummy.bib')

  AssertEqual
  \ {'command': ale#Escape(g:ale_bib_bibclean_executable) . ' -align-equals'},
  \ ale#fixers#bibclean#Fix(bufnr(''))

Execute(The bibclean callback should include custom bibclean options):
  let g:ale_bib_bibclean_options = '-author -check-values'
  call ale#test#SetFilename('../test-files/bib/dummy.bib')

  AssertEqual
  \ {
  \   'command': ale#Escape(g:ale_bib_bibclean_executable) . ' -author -check-values'
  \ },
  \ ale#fixers#bibclean#Fix(bufnr(''))