1
0
Fork 0
mirror of synced 2024-06-29 20:11:09 -04:00
ultimate-vim/sources_non_forked/ale/test/linter/test_cucumber.vader
2022-05-19 21:16:38 +08:00

19 lines
653 B
Plaintext

Before:
call ale#assert#SetUpLinterTest('cucumber', 'cucumber')
After:
call ale#assert#TearDownLinterTest()
Execute(Should require the nearest features dir, if one is found):
call ale#test#SetFilename('../test-files/cucumber/features/cuke.feature')
AssertLinter 'cucumber',
\ 'cucumber --dry-run --quiet --strict --format=json '
\ . '-r ' . ale#Escape(ale#path#Simplify(g:dir . '/../test-files/cucumber/features/')) . ' %t'
Execute(Should require nothing if no features dir is found):
call ale#test#SetFilename('something/without/a/features/dir')
AssertLinter 'cucumber',
\ 'cucumber --dry-run --quiet --strict --format=json %t'