discourse/spec/models/api_key_spec.rb

23 lines
521 B
Ruby
Raw Normal View History

2013-10-22 15:53:08 -04:00
# encoding: utf-8
# frozen_string_literal: true
require 'rails_helper'
2013-10-22 15:53:08 -04:00
require_dependency 'api_key'
describe ApiKey do
2017-07-24 08:45:05 -04:00
let(:user) { Fabricate(:user) }
it { is_expected.to belong_to :user }
it { is_expected.to belong_to :created_by }
it { is_expected.to validate_presence_of :key }
2013-10-22 15:53:08 -04:00
2017-07-24 08:45:05 -04:00
it 'validates uniqueness of user_id' do
Fabricate(:api_key, user: user)
api_key = Fabricate.build(:api_key, user: user)
expect(api_key.save).to eq(false)
expect(api_key.errors).to include(:user_id)
2013-10-22 15:53:08 -04:00
end
end