Sha256: e63fa80bfc308b84972801bc35713fbc3a36851f511cc33304a4cdfff7eed6c1

Contents?: true

Size: 1.39 KB

Versions: 2

Compression:

Stored size: 1.39 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Check that the first argument to the top level describe is a constant.
      #
      # @example
      #   # bad
      #   describe 'Do something' do
      #   end
      #
      #   # good
      #   describe TestedClass do
      #   end
      #
      #   describe "A feature example", type: :feature do
      #   end
      class DescribeClass < Cop
        include RuboCop::RSpec::SpecOnly, RuboCop::RSpec::TopLevelDescribe

        MSG = 'The first argument to describe should be '\
              'the class or module being tested.'.freeze

        def_node_matcher :valid_describe?, <<-PATTERN
        {(send {(const nil :RSpec) nil} :describe const ...) (send nil :describe)}
        PATTERN

        def_node_matcher :describe_with_metadata, <<-PATTERN
        (send {(const nil :RSpec) nil} :describe
          !const
          ...
          (hash $...))
        PATTERN

        def_node_matcher :rails_metadata?, <<-PATTERN
        (pair
          (sym :type)
          (sym {:request :feature :routing :view}))
        PATTERN

        def on_top_level_describe(node, args)
          return if valid_describe?(node)

          describe_with_metadata(node) do |pairs|
            return if pairs.any?(&method(:rails_metadata?))
          end

          add_offense(args.first, :expression)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-rspec-1.8.0 lib/rubocop/cop/rspec/describe_class.rb
rubocop-rspec-1.7.0 lib/rubocop/cop/rspec/describe_class.rb