Sha256: 89be13da20d59dd8efa201a733a1c387e688591f6f3b9399c8749c62b39e373e
Contents?: true
Size: 699 Bytes
Versions: 6
Compression:
Stored size: 699 Bytes
Contents
require 'spec_helper' describe Devise::Oauth2Providable::AuthorizationCode do describe 'basic authorization code instance' do with :client subject do Devise::Oauth2Providable::AuthorizationCode.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_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
6 entries across 6 versions & 1 rubygems