2016-10-31 13:40:27 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Subscription do
|
2016-10-31 13:40:27 -04:00
|
|
|
describe 'relationships' do
|
|
|
|
it { is_expected.to belong_to(:project) }
|
|
|
|
it { is_expected.to belong_to(:subscribable) }
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:subscribable) }
|
|
|
|
it { is_expected.to validate_presence_of(:user) }
|
2016-10-31 14:36:28 -04:00
|
|
|
|
|
|
|
it 'validates uniqueness of project_id scoped to subscribable_id, subscribable_type, and user_id' do
|
|
|
|
create(:subscription)
|
|
|
|
|
|
|
|
expect(subject).to validate_uniqueness_of(:project_id).scoped_to([:subscribable_id, :subscribable_type, :user_id])
|
|
|
|
end
|
2016-10-31 13:40:27 -04:00
|
|
|
end
|
|
|
|
end
|