ale/test/fixers/test_dhall_format_fixer_cal...

23 lines
559 B
Plaintext
Raw Normal View History

2020-08-02 16:58:49 +00:00
Before:
Save g:ale_dhall_executable
Save g:ale_dhall_options
" Use an invalid global executable, so we dont match it.
let g:ale_dhall_executable = 'odd-dhall'
let g:ale_dhall_options = '--ascii'
call ale#assert#SetUpFixerTest('dhall', 'dhall-format')
2020-08-02 16:58:49 +00:00
After:
call ale#assert#TearDownFixerTest()
2020-08-02 16:58:49 +00:00
Execute(The dhall-format callback should return the correct options):
call ale#test#SetFilename('../dhall_files/testfile.dhall')
AssertFixer
2020-08-02 16:58:49 +00:00
\ {
\ 'command': ale#Escape('odd-dhall')
\ . ' --ascii'
\ . ' format'
\ }