2021-01-03 14:25:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe IssueEmailParticipant do
|
|
|
|
describe "Associations" do
|
|
|
|
it { is_expected.to belong_to(:issue) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Validations' do
|
|
|
|
subject { build(:issue_email_participant) }
|
|
|
|
|
|
|
|
it { is_expected.to validate_presence_of(:issue) }
|
2021-04-17 20:07:23 +05:30
|
|
|
it { is_expected.to validate_uniqueness_of(:email).scoped_to([:issue_id]).ignoring_case_sensitivity }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
it_behaves_like 'an object with RFC3696 compliant email-formatted attributes', :email
|
|
|
|
|
|
|
|
it 'is invalid if the email is nil' do
|
|
|
|
subject.email = nil
|
|
|
|
|
|
|
|
expect(subject).to be_invalid
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
|
|
|
end
|