class ActionDispatch::TestResponse

def missing?

Was the URL not found?
def missing?
  ActiveSupport::Deprecation.warn(<<-MSG.squish)
   The missing? predicate is deprecated and will be removed in Rails 6.0.
   Please use not_found? as provided by Rack::Response::Helpers.
  MSG
  not_found?
end