Sha256: 8d17a5f273203134f7189e7012e4fb40dc9dbbd8512d372cfc1c00a8d18ea06a

Contents?: true

Size: 752 Bytes

Versions: 11

Compression:

Stored size: 752 Bytes

Contents

require File.dirname(__FILE__) + '/test_helper.rb'

class TestAccessToken < Test::Unit::TestCase
  def setup
    @fake_response = {
      :user_id => 5734758743895,
      :oauth_token => "key",
      :oauth_token_secret => "secret"
    }
    # setup a fake req. token. mocking Consumer would be more appropriate...
    @access_token = OAuth::AccessToken.from_hash(
      OAuth::Consumer.new("key", "secret", {}),
      @fake_response
    )
  end

  def test_provides_response_parameters
    assert @access_token
    assert_respond_to @access_token, :params
  end

  def test_access_token_makes_non_oauth_response_params_available
    assert_not_nil @access_token.params[:user_id]
    assert_equal 5734758743895, @access_token.params[:user_id]
  end
end

Version data entries

11 entries across 11 versions & 8 rubygems

Version Path
greut-oauth-0.3.6 test/test_access_token.rb
jwhitmire-oauth-0.3.6.1 test/test_access_token.rb
mojodna-oauth-0.3.6 test/test_access_token.rb
apigee-oauth-0.4.0 test/test_access_token.rb
oauth-0.4.1 test/test_access_token.rb
oauth-0.4.0 test/test_access_token.rb
oauth-0.3.7.pre1 test/test_access_token.rb
sutto-oauth-0.3.6 test/test_access_token.rb
gregwebs-oauth-0.3.6.1 test/test_access_token.rb
typhoauth-0.3.6.1 test/test_access_token.rb
oauth-0.3.6 test/test_access_token.rb