2020-10-02 08:09:03 -04:00
|
|
|
# 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-02-22 07:10:38 -05:00
|
|
|
it { is_expected.to validate_uniqueness_of(:email).scoped_to([:issue_id]).ignoring_case_sensitivity }
|
2020-10-02 08:09:03 -04:00
|
|
|
|
2021-02-22 07:10:38 -05:00
|
|
|
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
|
2020-10-02 08:09:03 -04:00
|
|
|
end
|
|
|
|
end
|