mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
16 lines
358 B
Ruby
16 lines
358 B
Ruby
# encoding: utf-8
|
|
require 'spec_helper'
|
|
require_dependency 'api_key'
|
|
|
|
describe ApiKey do
|
|
it { is_expected.to belong_to :user }
|
|
it { is_expected.to belong_to :created_by }
|
|
|
|
it { is_expected.to validate_presence_of :key }
|
|
|
|
skip 'validates uniqueness of user_id' do
|
|
Fabricate(:api_key)
|
|
is_expected.to validate_uniqueness_of(:user_id)
|
|
end
|
|
|
|
end
|