summaryrefslogtreecommitdiff
path: root/spec/bundler/support/artifice/endpoint_marshal_fail.rb
blob: 22c13e3e171ea3386d03c23dc2a3be158152d3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require_relative "endpoint_fallback"

Artifice.deactivate

class EndpointMarshalFail < EndpointFallback
  get "/api/v1/dependencies" do
    "f0283y01hasf"
  end
end

Artifice.activate_with(EndpointMarshalFail)