Sha256: 1b65a2fc75f33cbdb6203d5718d54884ab0162c2c596d3d5825bd8e6f463d451

Contents?: true

Size: 939 Bytes

Versions: 8

Compression:

Stored size: 939 Bytes

Contents

# frozen_string_literal: true

require 'rubocop-rspec'
require_relative 'base'

module Rubocop
  module Cop
    module RSpec
      # Checks for single-line hook blocks
      #
      # @example
      #
      #   # bad
      #   before { do_something }
      #   after(:each) { undo_something }
      #
      #   # good
      #   before do
      #     do_something
      #   end
      #
      #   after(:each) do
      #     undo_something
      #   end
      class SingleLineHook < Base
        MESSAGE = "Don't use single-line hook blocks."

        # @!method rspec_hook?(node)
        def_node_search :rspec_hook?, <<~PATTERN
          (send nil? {:after :around :before} ...)
        PATTERN

        def on_block(node)
          return unless node.single_line?
          return unless rspec_hook?(node)

          add_offense(node, message: MESSAGE)
        end
        alias_method :on_numblock, :on_block
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
gitlab-styles-13.0.1 lib/rubocop/cop/rspec/single_line_hook.rb
gitlab-styles-13.0.0 lib/rubocop/cop/rspec/single_line_hook.rb
gitlab-styles-11.0.0 lib/rubocop/cop/rspec/single_line_hook.rb
gitlab-styles-10.1.0 lib/rubocop/cop/rspec/single_line_hook.rb
gitlab-styles-10.0.0 lib/rubocop/cop/rspec/single_line_hook.rb
gitlab-styles-9.2.0 lib/rubocop/cop/rspec/single_line_hook.rb
gitlab-styles-9.1.0 lib/rubocop/cop/rspec/single_line_hook.rb
gitlab-styles-9.0.0 lib/rubocop/cop/rspec/single_line_hook.rb