Sha256: b76a46269837c288268763eb4e4d40613ae4804f9e15c6c83228769f8a4ed33e
Contents?: true
Size: 686 Bytes
Versions: 37
Compression:
Stored size: 686 Bytes
Contents
require 'spec_helper' describe Rack::OAuth2::AccessToken::Legacy do let :token do Rack::OAuth2::AccessToken::Legacy.new( :access_token => 'access_token' ) end let(:resource_endpoint) { 'https://server.example.com/resources/fake' } let(:request) { HTTPClient.new.send(:create_request, :post, URI.parse(resource_endpoint), {}, {:hello => "world"}, {}) } describe '#to_s' do subject { token } its(:to_s) { should == token.access_token } end describe '.authenticate' do it 'should set Authorization header' do request.header.should_receive(:[]=).with('Authorization', 'OAuth access_token') token.authenticate(request) end end end
Version data entries
37 entries across 37 versions & 2 rubygems