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

require File.expand_path("../endpoint_fallback", __FILE__)

Artifice.deactivate

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

Artifice.activate_with(EndpointMarshalFail)