module GdsApi::TestHelpers::PublishingApiV2

def resource_not_found(content_id, type)

def resource_not_found(content_id, type)
  {
    error: {
      code: 404,
      message: "Could not find #{type} with content_id: #{content_id}",
    }
  }
end