class RuboCop::Cop::InternalAffairs::EmptyLineBetweenExpectOffenseAndCorrection
end
RUBY
good_method
expect_correction(<<~RUBY)
RUBY
^^^^^^^^^^ Use ‘good_method`.
bad_method
expect_offense(<<~RUBY)
it ’registers and corrects an offense’ do
# good
end
RUBY
good_method
expect_correction(<<~RUBY)
RUBY
^^^^^^^^^^ Use ‘good_method`.
bad_method
expect_offense(<<~RUBY)
it ’registers and corrects an offense’ do
# bad
@example
(i.e. ‘expect_correction` and `expect_no_corrections`) are separated by empty line.
Checks whether `expect_offense` and correction expectation methods
def offense_range(node)
def offense_range(node) first_argument = node.first_argument if first_argument.respond_to?(:heredoc?) && first_argument.heredoc? first_argument.loc.heredoc_end else node end end
def on_send(node)
def on_send(node) return unless (next_sibling = node.right_sibling) && next_sibling.send_type? method_name = next_sibling.method_name return unless CORRECTION_EXPECTATION_METHODS.include?(method_name) range = offense_range(node) return unless range.last_line + 1 == next_sibling.loc.line add_offense(range, message: format(MSG, expect_correction: method_name)) do |corrector| corrector.insert_after(range, "\n") end end