Sha256: c10016bf24dec0c6e24eb34207eae617ad3ef16ad4a4ba994944d9c9e2340d65
Contents?: true
Size: 982 Bytes
Versions: 12
Compression:
Stored size: 982 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module RSpec # Checks if there is an empty line after the last let block. # # @example # # bad # let(:foo) { bar } # let(:something) { other } # it { does_something } # # # good # let(:foo) { bar } # let(:something) { other } # # it { does_something } class EmptyLineAfterFinalLet < Cop include RuboCop::RSpec::BlankLineSeparation MSG = 'Add an empty line after the last `let` block.' def on_block(node) return unless example_group_with_body?(node) latest_let = node.body.child_nodes.select { |child| let?(child) }.last return if latest_let.nil? return if last_child?(latest_let) missing_separating_line(latest_let) do |location| add_offense(latest_let, location: location) end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems