Sha256: c95abe4a7acaa2a0e62bbd9b0440f5e7aca647db9062b2ad3d467ab7a45b7ad5
Contents?: true
Size: 840 Bytes
Versions: 4
Compression:
Stored size: 840 Bytes
Contents
require 'spec_helper' describe Devise::Oauth2Providable::RefreshToken do it { Devise::Oauth2Providable::RefreshToken.table_name.should == 'oauth2_refresh_tokens' } describe 'basic refresh token instance' do let(:client) { create(:client) } subject do Devise::Oauth2Providable::RefreshToken.create! :client => client end it { should validate_presence_of :token } it { should validate_uniqueness_of :token } it { should belong_to :user } it { should belong_to :client } it { should validate_presence_of :client } it { should validate_presence_of :expires_at } it { should have_many :access_tokens } it { should have_db_index :client_id } it { should have_db_index :user_id } it { should have_db_index(:token).unique(true) } it { should have_db_index :expires_at } end end
Version data entries
4 entries across 4 versions & 1 rubygems