blob: a4b1ee9a1ff53e5bad91d45e065c51a3ba01b27b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Before:
Save b:ale_groovy_npmgroovylint_fix_options
call ale#assert#SetUpFixerTest('groovy', 'npm-groovy-lint')
After:
Restore
call ale#assert#TearDownFixerTest()
Execute(The callback should return the correct default values):
AssertFixer {
\ 'read_temporary_file': 1,
\ 'command': ale#Escape('npm-groovy-lint') . ' --fix %t',
\ }
Execute(The callback should include custom options):
let b:ale_groovy_npmgroovylint_fix_options = '--format'
AssertFixer {
\ 'read_temporary_file': 1,
\ 'command': ale#Escape('npm-groovy-lint') . ' --format %t',
\ }
|