Sha256: b88e7594b382b70ea9b440c5fbd9880995916c9ed0d4dbe5d3be43fe38e7f1b4
Contents?: true
Size: 1.48 KB
Versions: 3
Compression:
Stored size: 1.48 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/test_helper') require 'oauth/server' class ServerTest < Test::Unit::TestCase def setup @server=OAuth::Server.new "http://test.com" end def test_default_paths assert_equal "/oauth/request_token",@server.request_token_path assert_equal "/oauth/authorize",@server.authorize_path assert_equal "/oauth/access_token",@server.access_token_path end def test_default_urls assert_equal "http://test.com/oauth/request_token",@server.request_token_url assert_equal "http://test.com/oauth/authorize",@server.authorize_url assert_equal "http://test.com/oauth/access_token",@server.access_token_url end def test_generate_consumer_credentials consumer=@server.generate_consumer_credentials assert_not_nil consumer.key assert_not_nil consumer.secret end def test_create_consumer @consumer=@server.create_consumer assert_not_nil @consumer assert_not_nil @consumer.key assert_not_nil @consumer.secret assert_equal "http://test.com",@consumer.site assert_equal "/oauth/request_token",@consumer.request_token_path assert_equal "/oauth/authorize",@consumer.authorize_path assert_equal "/oauth/access_token",@consumer.access_token_path assert_equal "http://test.com/oauth/request_token",@consumer.request_token_url assert_equal "http://test.com/oauth/authorize",@consumer.authorize_url assert_equal "http://test.com/oauth/access_token",@consumer.access_token_url end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
qoobaa-oauth-0.3.8 | test/test_server.rb |
drogus-oauth-0.3.7 | test/test_server.rb |
drogus-oauth-0.3.6 | test/test_server.rb |