Sha256: 2c40c7a4d2a060fb1f53b5936005801544b22be27b623dcfeceea98641d99c3d

Contents?: true

Size: 962 Bytes

Versions: 38

Compression:

Stored size: 962 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module RSpec
      # Checks if there is an empty line after example group blocks.
      #
      # @example
      #   # bad
      #   RSpec.describe Foo do
      #     describe '#bar' do
      #     end
      #     describe '#baz' do
      #     end
      #   end
      #
      #   # good
      #   RSpec.describe Foo do
      #     describe '#bar' do
      #     end
      #
      #     describe '#baz' do
      #     end
      #   end
      #
      class EmptyLineAfterExampleGroup < Base
        extend AutoCorrector
        include EmptyLineSeparation

        MSG = 'Add an empty line after `%<example_group>s`.'

        def on_block(node) # rubocop:disable InternalAffairs/NumblockHandler
          return unless spec_group?(node)

          missing_separating_line_offense(node) do |method|
            format(MSG, example_group: method)
          end
        end
      end
    end
  end
end

Version data entries

38 entries across 38 versions & 7 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.3/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.3.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.2.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.1.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.0.5 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.0.4 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.0.3 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.0.2 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rspec-3.0.1/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.0.1 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.0.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-3.0.0.pre lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.31.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.30.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.29.2 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.29.1 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.29.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.28.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.27.1 lib/rubocop/cop/rspec/empty_line_after_example_group.rb