mirror of
https://github.com/dense-analysis/ale
synced 2025-02-16 20:26:54 +00:00
28 lines
699 B
Plaintext
28 lines
699 B
Plaintext
|
Before:
|
||
|
call ale#assert#SetUpFixerTest('nim', 'nimpretty')
|
||
|
|
||
|
After:
|
||
|
call ale#test#RestoreDirectory()
|
||
|
|
||
|
Execute(The nimpretty callback should return the correct default values):
|
||
|
|
||
|
AssertEqual
|
||
|
\ {
|
||
|
\ 'read_temporary_file': 1,
|
||
|
\ 'command': ale#Escape(g:ale_nim_nimpretty_executable)
|
||
|
\ . ' %t --maxLineLen:80'
|
||
|
\ },
|
||
|
\ ale#fixers#nimpretty#Fix(bufnr(''))
|
||
|
|
||
|
Execute(The nimpretty callback should include any additional options):
|
||
|
let g:ale_nim_nimpretty_options = '--some-option'
|
||
|
|
||
|
AssertEqual
|
||
|
\ {
|
||
|
\ 'read_temporary_file': 1,
|
||
|
\ 'command': ale#Escape(g:ale_nim_nimpretty_executable)
|
||
|
\ . ' %t'
|
||
|
\ . ' --some-option',
|
||
|
\ },
|
||
|
\ ale#fixers#nimpretty#Fix(bufnr(''))
|