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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/user_callout_spec.rb')
-rw-r--r--spec/models/user_callout_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/models/user_callout_spec.rb b/spec/models/user_callout_spec.rb
deleted file mode 100644
index 5b36c8450ea..00000000000
--- a/spec/models/user_callout_spec.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe UserCallout do
- let_it_be(:callout) { create(:user_callout) }
-
- it_behaves_like 'having unique enum values'
-
- describe 'validations' do
- 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