mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
21 lines
512 B
Plaintext
21 lines
512 B
Plaintext
Before:
|
|
call ale#assert#SetUpFixerTest('roc', 'roc_annotate')
|
|
|
|
After:
|
|
call ale#assert#TearDownFixerTest()
|
|
|
|
Execute(The roc annotate callback should return the correct default values):
|
|
AssertFixer {
|
|
\ 'command': 'roc format annotate %t',
|
|
\ 'read_temporary_file': 1,
|
|
\}
|
|
|
|
Execute(The roc annotate callback should allow a custom executable):
|
|
let g:ale_roc_roc_annotate_executable = 'foo/bar'
|
|
|
|
AssertFixer {
|
|
\ 'command': 'foo/bar format annotate %t',
|
|
\ 'read_temporary_file': 1,
|
|
\}
|
|
|