Sha256: 0e7070bc46e6f546fd85486c6f78b665e8e1c4385b4761b8755a8c541c215657

Contents?: true

Size: 1.27 KB

Versions: 16

Compression:

Stored size: 1.27 KB

Contents

module RuboCop
  module Cop
    module Ezcater
      # Use ".<class method>" instead of "self.<class method>" in RSpec example
      # group descriptions.
      #
      # @example
      #
      #   # good
      #   describe ".does_stuff" do
      #     ...
      #   end
      #
      #   # bad
      #   describe "self.does_stuff" do
      #     ...
      #   end
      class RspecDotNotSelfDot < Cop
        SELF_DOT_REGEXP = /["']self\./
        MSG = 'Use ".<class method>" instead of "self.<class method>" for example group description.'.freeze

        def_node_matcher :example_group_match, <<-PATTERN
          (send _ #{RuboCop::RSpec::Language::ExampleGroups::ALL.node_pattern_union} $_ ...)
        PATTERN

        def on_send(node)
          example_group_match(node) do |doc|
            add_offense(doc, location: :expression, message: MSG) if doc.source.match?(SELF_DOT_REGEXP)
          end
        end

        def autocorrect(node)
          lambda do |corrector|
            corrector.remove(Parser::Source::Range.new(node.source_range.source_buffer,
                                                       node.source_range.begin_pos + 1,
                                                       node.source_range.begin_pos + 5))
          end
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
ezcater_rubocop-0.52.6 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.52.5 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.52.4 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.52.3 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.52.2 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.52.1 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.52.0 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.52.0.rc0 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.51.8 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.51.7 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.51.6 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.51.5 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.51.4 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.51.3 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.51.2 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.51.1 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb