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