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

require_relative "helpers/endpoint_marshal_fail"

class EndpointMarshalFailBasicAuthentication < EndpointMarshalFail
  before do
    unless env["HTTP_AUTHORIZATION"]
      halt 401, "Authentication info not supplied"
    end
  end
end

require_relative "helpers/artifice"

Artifice.activate_with(EndpointMarshalFailBasicAuthentication)