Sha256: 4bb60e676a4434e95eeca2b46c011bd784baa07c2b01c6af86013d8a2caefff7

Contents?: true

Size: 927 Bytes

Versions: 30

Compression:

Stored size: 927 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module RSpec
    # Wrapper for RSpec hook
    class Hook < Concept
      STANDARDIZED_SCOPES = %i[each context suite].freeze
      private_constant(:STANDARDIZED_SCOPES)

      def name
        node.method_name
      end

      def knowable_scope?
        return true unless scope_argument

        scope_argument.sym_type?
      end

      def valid_scope?
        STANDARDIZED_SCOPES.include?(scope)
      end

      def example?
        scope.equal?(:each)
      end

      def scope
        case scope_name
        when nil, :each, :example then :each
        when :context, :all       then :context
        when :suite               then :suite
        else
          scope_name
        end
      end

      private

      def scope_name
        scope_argument.to_a.first
      end

      def scope_argument
        node.send_node.first_argument
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
rubocop-rspec-1.22.2 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.22.1 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.22.0 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.21.0 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.20.1 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.20.0 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.19.0 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.18.0 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.17.1 lib/rubocop/rspec/hook.rb
rubocop-rspec-1.17.0 lib/rubocop/rspec/hook.rb