Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_callout_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64ba17c81fe9a2c6d05d350960a9814ff9b8066c (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).ignoring_case_sensitivity }
  end
end