Sha256: 4120be42b8854a7676eda9826cbdde98edc8b107b3fb6272e84988d167c8ac38

Contents?: true

Size: 629 Bytes

Versions: 10

Compression:

Stored size: 629 Bytes

Contents

require File.dirname(__FILE__) + '/../spec_helper'

describe Oauth2Token do
  fixtures :client_applications, :users, :oauth_tokens
  before(:each) do
    @token = Oauth2Token.create :client_application => client_applications(:one), :user=>users(:aaron)
  end
  
  it "should be valid" do
    @token.should be_valid
  end
  
  it "should have a token" do
    @token.token.should_not be_nil
  end
  
  it "should have a secret" do
    @token.secret.should_not be_nil
  end
  
  it "should be authorized" do
    @token.should be_authorized
  end
  
  it "should not be invalidated" do
    @token.should_not be_invalidated
  end

end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
oauth-plugin-0.4.0.pre7 generators/oauth_provider/templates/oauth2_token_spec.rb
oauth-plugin-0.4.0.pre6 generators/oauth_provider/templates/oauth2_token_spec.rb
oauth-plugin-0.4.0.pre5 generators/oauth_provider/templates/oauth2_token_spec.rb
insrc-oauth-plugin-0.4.0.pre6 generators/oauth_provider/templates/oauth2_token_spec.rb
insrc-oauth-plugin-0.4.0.pre5 generators/oauth_provider/templates/oauth2_token_spec.rb
le1t0-oauth-plugin-0.4.0.pre4.001 generators/oauth_provider/templates/oauth2_token_spec.rb
oauth-plugin-0.4.0.pre4 generators/oauth_provider/templates/oauth2_token_spec.rb
oauth-plugin-0.4.0.pre3 generators/oauth_provider/templates/oauth2_token_spec.rb
oauth-plugin-0.4.0.pre2 generators/oauth_provider/templates/oauth2_token_spec.rb
oauth-plugin-0.4.0.pre1 generators/oauth_provider/templates/oauth2_token_spec.rb