Sha256: d56313f13a701cd7acde08b269ef836a4fd5d81347ede570308e5490c6b01550

Contents?: true

Size: 913 Bytes

Versions: 24

Compression:

Stored size: 913 Bytes

Contents

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

  it 'finds `allow_any_instance_of` instead of an instance double' do
    expect_offense(<<-RUBY)
      before do
        allow_any_instance_of(Object).to receive(:foo)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Avoid stubbing using `allow_any_instance_of`.
      end
    RUBY
  end

  it 'finds `expect_any_instance_of` instead of an instance double' do
    expect_offense(<<-RUBY)
      before do
        expect_any_instance_of(Object).to receive(:foo)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Avoid stubbing using `expect_any_instance_of`.
      end
    RUBY
  end

  it 'finds old `any_instance` syntax instead of an instance double' do
    expect_offense(<<-RUBY)
      before do
        Object.any_instance.should_receive(:foo)
        ^^^^^^^^^^^^^^^^^^^ Avoid stubbing using `any_instance`.
      end
    RUBY
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
rubocop-rspec-1.18.0 spec/rubocop/cop/rspec/any_instance_spec.rb
rubocop-rspec-1.17.1 spec/rubocop/cop/rspec/any_instance_spec.rb
rubocop-rspec-1.17.0 spec/rubocop/cop/rspec/any_instance_spec.rb
rubocop-rspec-1.16.0 spec/rubocop/cop/rspec/any_instance_spec.rb