ruby--ruby/spec/bundler/support/artifice/compact_index_checksum_mism...

17 lines
381 B
Ruby

# frozen_string_literal: true
require_relative "compact_index"
Artifice.deactivate
class CompactIndexChecksumMismatch < CompactIndexAPI
get "/versions" do
headers "ETag" => quote("123")
headers "Surrogate-Control" => "max-age=2592000, stale-while-revalidate=60"
content_type "text/plain"
body ""
end
end
Artifice.activate_with(CompactIndexChecksumMismatch)