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

require_relative "helpers/endpoint"

class EndpointApiForbidden < Endpoint
  get "/api/v1/dependencies" do
    halt 403
  end
end

require_relative "helpers/artifice"

Artifice.activate_with(EndpointApiForbidden)