diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-09-16 17:28:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-16 17:28:00 +0100 |
commit | 8bc66cff39f166562aa1060f4f50e478ebe4dd9b (patch) | |
tree | 2bee605e0ef8e9d856b004acb8b6a7472d706d0d /test | |
parent | a59d1ddbf39fac6463c3b8748faf2651c9f9130d (diff) | |
parent | 6ebd8f355c974cb6b7c5d5aff20603c8c4b38feb (diff) | |
download | ale-8bc66cff39f166562aa1060f4f50e478ebe4dd9b.zip |
Merge pull request #903 from doits/slimlint_directory
Pass the rubocop configuration file to slim-lint.
Diffstat (limited to 'test')
-rw-r--r-- | test/command_callback/test_slimlint_command_callback.vader | 35 | ||||
-rw-r--r-- | test/slimlint-test-files/.rubocop.yml | 0 | ||||
-rw-r--r-- | test/slimlint-test-files/subdir/file.slim | 0 |
3 files changed, 35 insertions, 0 deletions
diff --git a/test/command_callback/test_slimlint_command_callback.vader b/test/command_callback/test_slimlint_command_callback.vader new file mode 100644 index 00000000..1bff4288 --- /dev/null +++ b/test/command_callback/test_slimlint_command_callback.vader @@ -0,0 +1,35 @@ +Before: + runtime ale_linters/slim/slimlint.vim + + let g:default_command = 'slim-lint %t' + + call ale#test#SetDirectory('/testplugin/test/command_callback') + +After: + Restore + + unlet! g:default_command + + let g:ale_has_override = {} + + call ale#linter#Reset() + call ale#test#RestoreDirectory() + +Execute(The default command should be correct): + AssertEqual g:default_command, ale_linters#slim#slimlint#GetCommand(bufnr('')) + +Execute(The command should have the .rubocop.yml prepended as an env var if one exists): + call ale#test#SetFilename('../slimlint-test-files/subdir/file.slim') + + AssertEqual + \ 'SLIM_LINT_RUBUCOP_CONF=''/testplugin/test/slimlint-test-files/.rubocop.yml'' ' . g:default_command, + \ ale_linters#slim#slimlint#GetCommand(bufnr('')) + +Execute(The command should have the .rubocop.yml prepended as an env var if one exists on win32): + call ale#test#SetFilename('../slimlint-test-files/subdir/file.slim') + + let g:ale_has_override['win32'] = 1 + + AssertEqual + \ 'set SLIM_LINT_RUBUCOP_CONF=''/testplugin/test/slimlint-test-files/.rubocop.yml'' && ' . g:default_command, + \ ale_linters#slim#slimlint#GetCommand(bufnr('')) diff --git a/test/slimlint-test-files/.rubocop.yml b/test/slimlint-test-files/.rubocop.yml new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/slimlint-test-files/.rubocop.yml diff --git a/test/slimlint-test-files/subdir/file.slim b/test/slimlint-test-files/subdir/file.slim new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/slimlint-test-files/subdir/file.slim |