Sha256: a8329f86d20c72321b17ad99c8b498c595eab615c7a91d2568db8e870064735d
Contents?: true
Size: 711 Bytes
Versions: 53
Compression:
Stored size: 711 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module RSpec # Check that chains of messages are not being stubbed. # # @example # # bad # allow(foo).to receive_message_chain(:bar, :baz).and_return(42) # # # good # thing = Thing.new(baz: 42) # allow(foo).to receive(:bar).and_return(thing) # class MessageChain < Base MSG = 'Avoid stubbing using `%<method>s`.' RESTRICT_ON_SEND = %i[receive_message_chain stub_chain].freeze def on_send(node) add_offense( node.loc.selector, message: format(MSG, method: node.method_name) ) end end end end end
Version data entries
53 entries across 51 versions & 7 rubygems