summaryrefslogtreecommitdiff
path: root/spec/controllers/user_callouts_controller_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/user_callouts_controller_spec.rb')
-rw-r--r--spec/controllers/user_callouts_controller_spec.rb52
1 files changed, 0 insertions, 52 deletions
diff --git a/spec/controllers/user_callouts_controller_spec.rb b/spec/controllers/user_callouts_controller_spec.rb
deleted file mode 100644
index 3bb8d78a6b0..00000000000
--- a/spec/controllers/user_callouts_controller_spec.rb
+++ /dev/null
@@ -1,52 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe UserCalloutsController do
- let_it_be(:user) { create(:user) }
-
- before do
- sign_in(user)
- end
-
- describe "POST #create" do
- let(:params) { { feature_name: feature_name } }
-
- subject { post :create, params: params, format: :json }
-
- context 'with valid feature name' do
- let(:feature_name) { UserCallout.feature_names.each_key.first }
-
- context 'when callout entry does not exist' do
- it 'creates a callout entry with dismissed state' do
- expect { subject }.to change { UserCallout.count }.by(1)
- end
-
- it 'returns success' do
- subject
-
- expect(response).to have_gitlab_http_status(:ok)
- end
- end
-
- context 'when callout entry already exists' do
- let!(:callout) { create(:user_callout, feature_name: UserCallout.feature_names.each_key.first, user: user) }
-
- it 'returns success', :aggregate_failures do
- expect { subject }.not_to change { UserCallout.count }
- expect(response).to have_gitlab_http_status(:ok)
- end
- end
- end
-
- context 'with invalid feature name' do
- let(:feature_name) { 'bogus_feature_name' }
-
- it 'returns bad request' do
- subject
-
- expect(response).to have_gitlab_http_status(:bad_request)
- end
- end
- end
-end