test_cookstyle_handler.vader
1 Before: 2 runtime ale_linters/chef/cookstyle.vim 3 4 After: 5 call ale#linter#Reset() 6 7 Execute(Basic warnings should be handled): 8 AssertEqual 9 \ [ 10 \ { 11 \ 'lnum': 58, 12 \ 'col': 24, 13 \ 'code': 'Style/UnneededInterpolation', 14 \ 'type': 'W', 15 \ 'end_col': 40, 16 \ 'text': 'Style/UnneededInterpolation: Prefer `to_s` over string interpolation.', 17 \ } 18 \ ], 19 \ ale_linters#chef#cookstyle#Handle(bufnr(''), [ 20 \ '{"metadata":{"rubocop_version":"0.62.0","ruby_engine":"ruby","ruby_version":"2.6.0","ruby_patchlevel":"0","ruby_platform":"x86_64-linux"},"files":[{"path":"recipes/default.rb","offenses":[{"severity":"convention","message":"Style/UnneededInterpolation: Prefer `to_s` over string interpolation.","cop_name":"Style/UnneededInterpolation","corrected":false,"location":{"start_line":58,"start_column":24,"last_line":58,"last_column":40,"length":17,"line":58,"column":24}}]}],"summary":{"offense_count":1,"target_file_count":1,"inspected_file_count":1}}' 21 \ ])