Sha256: 1a994f13af1703af5df50ae0cefc64f36ab5d9c5caa540f358a653a4ee13d5d8

Contents?: true

Size: 1.46 KB

Versions: 38

Compression:

Stored size: 1.46 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Remove redundant `around` hook.
      #
      # @example
      #   # bad
      #   around do |example|
      #     example.run
      #   end
      #
      #   # good
      #
      class RedundantAround < Base
        extend AutoCorrector

        MSG = 'Remove redundant `around` hook.'

        RESTRICT_ON_SEND = %i[around].freeze

        def on_block(node)
          return unless match_redundant_around_hook_block?(node)

          add_offense(node) do |corrector|
            autocorrect(corrector, node)
          end
        end
        alias on_numblock on_block

        def on_send(node)
          return unless match_redundant_around_hook_send?(node)

          add_offense(node) do |corrector|
            autocorrect(corrector, node)
          end
        end

        private

        # @!method match_redundant_around_hook_block?(node)
        def_node_matcher :match_redundant_around_hook_block?, <<~PATTERN
          ({block numblock} (send _ :around ...) ... (send _ :run))
        PATTERN

        # @!method match_redundant_around_hook_send?(node)
        def_node_matcher :match_redundant_around_hook_send?, <<~PATTERN
          (send
            _
            :around
            ...
            (block-pass
              (sym :run)
            )
          )
        PATTERN

        def autocorrect(corrector, node)
          corrector.remove(node)
        end
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 7 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.3/lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.3.0 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.2.0 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.1.0 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.0.5 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.0.4 lib/rubocop/cop/rspec/redundant_around.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.0.3 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.0.2 lib/rubocop/cop/rspec/redundant_around.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.0.1 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.0.0 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-3.0.0.pre lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-2.31.0 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-2.30.0 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-2.29.2 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-2.29.1 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-2.29.0 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-2.28.0 lib/rubocop/cop/rspec/redundant_around.rb
rubocop-rspec-2.27.1 lib/rubocop/cop/rspec/redundant_around.rb