module Roda::RodaPlugins::SinatraHelpers::ResponseMethods

def success?

Whether or not the status is set to 2xx. Returns nil if status not yet set.
def success?
  @status.between?(200, 299) if @status
end