Sha256: f50f3aa73c110f070929d0f5e3e35f64a1480c1b4e8ce81a196a44a1d5800141

Contents?: true

Size: 1.17 KB

Versions: 8

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Checks that only one `it_behaves_like` style is used.
      #
      # @example when configuration is `EnforcedStyle: it_behaves_like`
      #   # bad
      #   it_should_behave_like 'a foo'
      #
      #   # good
      #   it_behaves_like 'a foo'
      #
      # @example when configuration is `EnforcedStyle: it_should_behave_like`
      #   # bad
      #   it_behaves_like 'a foo'
      #
      #   # good
      #   it_should_behave_like 'a foo'
      class ItBehavesLike < Cop
        include ConfigurableEnforcedStyle

        MSG = 'Prefer `%s` over `%s` when including examples in '\
              'a nested context.'.freeze

        def_node_matcher :example_inclusion_offense, '(send _ % ...)'

        def on_send(node)
          example_inclusion_offense(node, alternative_style) do
            add_offense(node, :expression)
          end
        end

        def autocorrect(node)
          ->(corrector) { corrector.replace(node.loc.selector, style.to_s) }
        end

        private

        def message(_node)
          format(MSG, style, alternative_style)
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rubocop-rspec-1.18.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-1.17.1 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-1.17.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-1.16.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-1.15.1 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-1.15.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-1.14.0 lib/rubocop/cop/rspec/it_behaves_like.rb
rubocop-rspec-1.13.0 lib/rubocop/cop/rspec/it_behaves_like.rb