1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
require 'spec_helper'
describe Rack::OAuth2::AccessToken::Bearer do
let :token do
Rack::OAuth2::AccessToken::Bearer.new(
access_token: 'access_token'
)
end
let(:resource_endpoint) { 'https://server.example.com/resources/fake' }
let(:request) { Faraday::Request.new(:post, URI.parse(resource_endpoint), '', {hello: "world"}, {}) }
describe '.authenticate' do
it 'should set Authorization header' do
expect(request.headers).to receive(:[]=).with('Authorization', 'Bearer access_token')
token.authenticate(request)
end
end
end
|