2023-04-23 21:23:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2023-06-20 00:43:36 +05:30
|
|
|
RSpec.describe Profiles::CommentTemplatesController, feature_category: :user_profile do
|
2023-04-23 21:23:45 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
|
|
|
describe 'feature flag disabled' do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(saved_replies: false)
|
|
|
|
|
2023-06-20 00:43:36 +05:30
|
|
|
get '/-/profile/comment_templates'
|
2023-04-23 21:23:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(response).to have_gitlab_http_status(:not_found) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'feature flag enabled' do
|
|
|
|
before do
|
2023-06-20 00:43:36 +05:30
|
|
|
get '/-/profile/comment_templates'
|
2023-04-23 21:23:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(response).to have_gitlab_http_status(:ok) }
|
|
|
|
|
|
|
|
it 'sets hide search settings ivar' do
|
|
|
|
expect(assigns(:hide_search_settings)).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|