summaryrefslogtreecommitdiff
path: root/spec/models/issue_email_participant_spec.rb
blob: f19e65e31f39bf3a866026ac710167e4f173f822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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) }
    it { is_expected.to validate_presence_of(:email) }
    it { is_expected.to validate_uniqueness_of(:email).scoped_to([:issue_id]) }

    it_behaves_like 'an object with RFC3696 compliant email-formated attributes', :email
  end
end