Sha256: 7c03c9a7d100ce06f44be55fe2eb062867467f2c2a4026bc733bca9d346daf54

Contents?: true

Size: 1.51 KB

Versions: 4

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

RSpec.describe RuboCop::Cop::RSpec::ExpectOutput do
  subject(:cop) { described_class.new }

  it 'registers an offense for overwriting $stdout within an example' do
    expect_violation(<<-RUBY)
      specify do
        $stdout = StringIO.new
        ^^^^^^^ Use `expect { ... }.to output(...).to_stdout` instead of mutating $stdout.
      end
    RUBY
  end

  it 'registers an offense for overwriting $stderr ' \
     'within an example scoped hook' do
    expect_violation(<<-RUBY)
      before(:each) do
        $stderr = StringIO.new
        ^^^^^^^ Use `expect { ... }.to output(...).to_stderr` instead of mutating $stderr.
      end
    RUBY
  end

  it 'does not register an offense for interacting with $stdout' do
    expect_no_violations(<<-RUBY)
      specify do
        $stdout.puts("hi")
      end
    RUBY
  end

  it 'does not flag assignments to other global variables' do
    expect_no_violations(<<-RUBY)
      specify do
        $blah = StringIO.new
      end
    RUBY
  end

  it 'does not flag assignments to $stdout outside of example scope' do
    expect_no_violations(<<-RUBY)
      before(:suite) do
        $stderr = StringIO.new
      end
    RUBY
  end

  it 'does not flag assignments to $stdout in example_group scope' do
    expect_no_violations(<<-RUBY)
      describe Foo do
        $stderr = StringIO.new
      end
    RUBY
  end

  it 'does not flag assigns to $stdout when in the root scope' do
    expect_no_violations('$stderr = StringIO.new')
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rubocop-rspec-1.15.1 spec/rubocop/cop/rspec/expect_output_spec.rb
rubocop-rspec-1.15.0 spec/rubocop/cop/rspec/expect_output_spec.rb
rubocop-rspec-1.14.0 spec/rubocop/cop/rspec/expect_output_spec.rb
rubocop-rspec-1.13.0 spec/rubocop/cop/rspec/expect_output_spec.rb