Sha256: deafcb39f2f5112e89294c0fff88020357cbeb3890896fbaa691eb3d94cfd9a1

Contents?: true

Size: 1.27 KB

Versions: 12

Compression:

Stored size: 1.27 KB

Contents

# encoding: utf-8

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, :expression, MSG) if SELF_DOT_REGEXP =~ doc.source
          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

12 entries across 12 versions & 1 rubygems

Version Path
ezcater_rubocop-0.49.7 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.7.rc3 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.7.rc2 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.7.rc1 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.6 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.5 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.4 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.3 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.2 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.1 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.0 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb
ezcater_rubocop-0.49.0.rc0 lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb