Sha256: f68d244ddb0f6d9fe56f359fea32431ca84b829276134121219904286b09db1c
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 KB
Contents
# encoding: utf-8 require 'spec_helper' require 'stringio' require 'ostruct' module Rubocop module Formatter describe DisabledConfigFormatter do subject(:formatter) { described_class.new(output) } let(:output) do o = StringIO.new def o.path 'rubocop-todo.yml' end o end let(:offenses) do [Rubocop::Cop::Offense.new(:convention, location, 'message', 'Cop1'), Rubocop::Cop::Offense.new(:convention, location, 'message', 'Cop2')] end let(:location) { OpenStruct.new(line: 1, column: 5) } before { $stdout = StringIO.new } describe '#finished' do it 'displays YAML configuration disabling all cops with offenses' do formatter.file_finished('test.rb', offenses) formatter.finished(['test.rb']) expect(output.string).to eq(described_class::HEADING + ['', '', '# Offense count: 1', 'Cop1:', ' Enabled: false', '', '# Offense count: 1', 'Cop2:', ' Enabled: false', ''].join("\n")) expect($stdout.string) .to eq(['Created rubocop-todo.yml.', 'Run rubocop with --config rubocop-todo.yml, or', 'add inherit_from: rubocop-todo.yml in a .rubocop.yml ' \ 'file.', ''].join("\n")) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubocop-0.19.1 | spec/rubocop/formatter/disabled_config_formatter_spec.rb |
rubocop-0.19.0 | spec/rubocop/formatter/disabled_config_formatter_spec.rb |