diff options
author | w0rp <devw0rp@gmail.com> | 2017-07-06 22:58:14 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-07-06 22:58:14 +0100 |
commit | 854066e8499344a6461fef8fd0ee4b3f8eaebeeb (patch) | |
tree | 5fa7c99247494296f22ac963471e37307df5be16 /test | |
parent | b43413916d0f215fb7a38c53784b3e68360d914a (diff) | |
download | ale-854066e8499344a6461fef8fd0ee4b3f8eaebeeb.zip |
#732 - Use the configuration files when fixing files with rubocop
Diffstat (limited to 'test')
-rw-r--r-- | test/command_callback/ruby_paths/with_config/.rubocop.yml | 0 | ||||
-rw-r--r-- | test/fixers/test_rubocop_fixer_callback.vader | 22 |
2 files changed, 18 insertions, 4 deletions
diff --git a/test/command_callback/ruby_paths/with_config/.rubocop.yml b/test/command_callback/ruby_paths/with_config/.rubocop.yml new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/command_callback/ruby_paths/with_config/.rubocop.yml diff --git a/test/fixers/test_rubocop_fixer_callback.vader b/test/fixers/test_rubocop_fixer_callback.vader index e9352e73..74160c73 100644 --- a/test/fixers/test_rubocop_fixer_callback.vader +++ b/test/fixers/test_rubocop_fixer_callback.vader @@ -19,10 +19,24 @@ After: unlet! g:dir Execute(The rubocop callback should return the correct default values): - silent execute 'file ' . fnameescape(g:dir . '/ruby_paths/dummy.rb') + call ale#test#SetFilename('ruby_paths/dummy.rb') AssertEqual - \ {'read_temporary_file': 1, - \ 'command': "'" . g:ale_ruby_rubocop_executable . "' " - \ . '--auto-correct %t' }, + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape(g:ale_ruby_rubocop_executable) + \ . ' --auto-correct %t', + \ }, + \ ale#fixers#rubocop#Fix(bufnr('')) + +Execute(The rubocop callback should include configuration files): + call ale#test#SetFilename('ruby_paths/with_config/dummy.rb') + + AssertEqual + \ { + \ 'read_temporary_file': 1, + \ 'command': ale#Escape(g:ale_ruby_rubocop_executable) + \ . ' --config ' . ale#Escape(g:dir . '/ruby_paths/with_config/.rubocop.yml') + \ . ' --auto-correct %t', + \ }, \ ale#fixers#rubocop#Fix(bufnr('')) |