module RuboCop::Cop::RSpec::EmptyLineSeparation

def last_child?(node)

def last_child?(node)
  return true unless node.parent&.begin_type?
  node.equal?(node.parent.children.last)
end