summaryrefslogtreecommitdiff
path: root/spec/models/user_callout_spec.rb
blob: b39d12e48acc029bb09404777123f354e8f5bb75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'rails_helper'

describe UserCallout do
  let!(:callout) { create(:user_callout) }

  describe 'relationships' do
    it { is_expected.to belong_to(:user) }
  end

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

    it { is_expected.to validate_presence_of(:feature_name) }
    it { is_expected.to validate_uniqueness_of(:feature_name).scoped_to(:user_id) }
  end
end