summaryrefslogtreecommitdiff
path: root/spec/models/users/namespace_commit_email_spec.rb
blob: 696dac25f9b5e6228a2831fb64fbc1bcb47c17ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Users::NamespaceCommitEmail, type: :model do
  subject { build(:namespace_commit_email) }

  describe 'associations' do
    it { is_expected.to belong_to(:user) }
    it { is_expected.to belong_to(:namespace) }
    it { is_expected.to belong_to(:email) }
  end

  describe 'validations' do
    it { is_expected.to validate_presence_of(:user) }
    it { is_expected.to validate_presence_of(:namespace) }
    it { is_expected.to validate_presence_of(:email) }
  end

  it { is_expected.to be_valid }
end