bundle-new/spec/support/artifice/endopint_marshal_fail_basic...

14 lines
334 B
Ruby
Raw Permalink Normal View History

2019-10-06 15:45:34 +00:00
require File.expand_path("../endpoint_marshal_fail", __FILE__)
Artifice.deactivate
class EndpointMarshalFailBasicAuthentication < EndpointMarshalFail
before do
unless env["HTTP_AUTHORIZATION"]
halt 401, "Authentication info not supplied"
end
end
end
Artifice.activate_with(EndpointMarshalFailBasicAuthentication)