This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/test/command_callback/test_lintr_command_callback.vader

35 lines
1.1 KiB
Text
Raw Normal View History

2017-09-03 22:29:12 +00:00
Before:
call ale#assert#SetUpLinterTest('r', 'lintr')
2017-09-03 22:29:12 +00:00
After:
call ale#assert#TearDownLinterTest()
2017-09-03 22:29:12 +00:00
Execute(The default lintr command should be correct):
AssertLinterCwd '%s:h'
AssertLinter 'Rscript',
\ 'Rscript --vanilla -e '
2018-02-01 02:06:35 +00:00
\ . ale#Escape('suppressPackageStartupMessages(library(lintr));'
\ . 'lint(cache = FALSE, commandArgs(TRUE), '
\ . 'with_defaults())')
\ . ' %t'
2017-09-03 22:29:12 +00:00
Execute(The lintr options should be configurable):
2018-02-01 02:06:35 +00:00
let b:ale_r_lintr_options = 'with_defaults(object_usage_linter = NULL)'
2017-09-03 22:29:12 +00:00
AssertLinter 'Rscript',
\ 'Rscript --vanilla -e '
2018-02-01 02:06:35 +00:00
\ . ale#Escape('suppressPackageStartupMessages(library(lintr));'
\ . 'lint(cache = FALSE, commandArgs(TRUE), '
\ . 'with_defaults(object_usage_linter = NULL))')
\ . ' %t'
2018-02-04 18:57:52 +00:00
Execute(If the lint_package flag is set, lintr::lint_package should be called):
let b:ale_r_lintr_lint_package = 1
AssertLinter 'Rscript',
\ 'Rscript --vanilla -e '
2018-02-04 18:57:52 +00:00
\ . ale#Escape('suppressPackageStartupMessages(library(lintr));'
\ . 'lint_package(cache = FALSE, '
\ . 'linters = with_defaults())')
\ . ' %t'