Sha256: c860a541f1ac57b8f913901bf8a129cefd64d1d204f5e38ad0be094fcec0baaf

Contents?: true

Size: 1.3 KB

Versions: 53

Compression:

Stored size: 1.3 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Checks that only one `it_behaves_like` style is used.
      #
      # @example `EnforcedStyle: it_behaves_like` (default)
      #   # bad
      #   it_should_behave_like 'a foo'
      #
      #   # good
      #   it_behaves_like 'a foo'
      #
      # @example `EnforcedStyle: it_should_behave_like`
      #   # bad
      #   it_behaves_like 'a foo'
      #
      #   # good
      #   it_should_behave_like 'a foo'
      #
      class ItBehavesLike < Base
        extend AutoCorrector
        include ConfigurableEnforcedStyle

        MSG = 'Prefer `%<replacement>s` over `%<original>s` when including ' \
              'examples in a nested context.'
        RESTRICT_ON_SEND = %i[it_behaves_like it_should_behave_like].freeze

        # @!method example_inclusion_offense(node)
        def_node_matcher :example_inclusion_offense, '(send _ % ...)'

        def on_send(node)
          example_inclusion_offense(node, alternative_style) do
            add_offense(node) do |corrector|
              corrector.replace(node.loc.selector, style.to_s)
            end
          end
        end

        private

        def message(_node)
          format(MSG, replacement: style, original: alternative_style)
        end
      end
    end
  end
end

Version data entries

53 entries across 51 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/it_behaves_like.rb
rubocop-rspec-3.3.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.2.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.1.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.0.5 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.0.4 lib/rubocop/cop/rspec/it_behaves_like.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.0.3 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.0.2 lib/rubocop/cop/rspec/it_behaves_like.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.0.1 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.0.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-3.0.0.pre lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-2.31.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-2.30.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-2.29.2 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-2.29.1 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-2.29.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-2.28.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-2.27.1 lib/rubocop/cop/rspec/it_behaves_like.rb