Sha256: a285c2fb113d095d753377ebe74969a0c5cd182f1ece3b1f14ded928c29ca4ef
Contents?: true
Size: 1.77 KB
Versions: 10
Compression:
Stored size: 1.77 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module RSpec # Check that implicit block expectation syntax is not used. # # Prefer using explicit block expectations. # # @example # # bad # subject { -> { do_something } } # it { is_expected.to change(something).to(new_value) } # # # good # it 'changes something to a new value' do # expect { do_something }.to change(something).to(new_value) # end class ImplicitBlockExpectation < Cop MSG = 'Avoid implicit block expectations.' def_node_matcher :lambda?, <<-PATTERN { (send (const nil? :Proc) :new) (send nil? :proc) (send nil? :lambda) } PATTERN def_node_matcher :lambda_subject?, '(block #lambda? ...)' def_node_matcher :implicit_expect, <<-PATTERN $(send nil? {:is_expected :should :should_not} ...) PATTERN def on_send(node) implicit_expect(node) do |implicit_expect| subject = nearest_subject(implicit_expect) add_offense(implicit_expect) if lambda_subject?(subject&.body) end end private def nearest_subject(node) node .each_ancestor(:block) .lazy .select { |block_node| multi_statement_example_group?(block_node) } .map { |block_node| find_subject(block_node) } .find(&:itself) end def multi_statement_example_group?(node) example_group_with_body?(node) && node.body.begin_type? end def find_subject(block_node) block_node.body.child_nodes.find { |send_node| subject?(send_node) } end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems