Sha256: b8b5e0bc4cf73b72b4e4d478a763bbaca3cf9918a8589da94fb03ef2c3a98e75

Contents?: true

Size: 1.11 KB

Versions: 9

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Check that instances are not being stubbed globally.
      #
      # Prefer instance doubles over stubbing any instance of a class
      #
      # @example
      #   # bad
      #   describe MyClass do
      #     before { allow_any_instance_of(MyClass).to receive(:foo) }
      #   end
      #
      #   # good
      #   describe MyClass do
      #     let(:my_instance) { instance_double(MyClass) }
      #
      #     before do
      #       allow(MyClass).to receive(:new).and_return(my_instance)
      #       allow(my_instance).to receive(:foo)
      #     end
      #   end
      class AnyInstance < Base
        MSG = 'Avoid stubbing using `%<method>s`.'

        def_node_matcher :disallowed_stub, <<-PATTERN
          (send _ ${:any_instance :allow_any_instance_of :expect_any_instance_of} ...)
        PATTERN

        def on_send(node)
          disallowed_stub(node) do |method|
            add_offense(
              node,
              message: format(MSG, method: method)
            )
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rubocop-rspec-2.1.0 lib/rubocop/cop/rspec/any_instance.rb
rubocop-rspec-2.0.1 lib/rubocop/cop/rspec/any_instance.rb
rubocop-rspec-2.0.0 lib/rubocop/cop/rspec/any_instance.rb
rubocop-rspec-2.0.0.pre lib/rubocop/cop/rspec/any_instance.rb
rubocop-rspec-1.44.1 lib/rubocop/cop/rspec/any_instance.rb
rubocop-rspec-1.44.0 lib/rubocop/cop/rspec/any_instance.rb
rubocop-rspec-1.43.2 lib/rubocop/cop/rspec/any_instance.rb
rubocop-rspec-1.43.1 lib/rubocop/cop/rspec/any_instance.rb
rubocop-rspec-1.43.0 lib/rubocop/cop/rspec/any_instance.rb