ruby/spec/bundler/support/artifice/compact_index_api_missing.rb
2022-09-03 15:54:07 +09:00

13 lines
237 B
Ruby

# frozen_string_literal: true
require_relative "compact_index"
Artifice.deactivate
class CompactIndexApiMissing < CompactIndexAPI
get "/fetch/actual/gem/:id" do
halt 404
end
end
Artifice.activate_with(CompactIndexApiMissing)