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
rubocop-rspec-2.27.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.26.1/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.26.1 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.26.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.25.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.24.1 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.24.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.23.2 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.23.1 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.23.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
mlh-rubocop-config-1.0.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
fablicop-1.10.2 vendor/bundle/ruby/3.2.0/gems/rubocop-rspec-2.22.0/lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.22.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.21.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb
rubocop-rspec-2.20.0 lib/rubocop/cop/rspec/empty_line_after_example_group.rb