aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/support/artifice/endpoint_marshal_fail.rb
blob: 0fb75ebf317dd9769e0600029e8053929dfdbc47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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)