debian-mirror-gitlab/spec/requests/profiles/comment_templates_controller_spec.rb
2023-06-20 00:43:36 +05:30

35 lines
786 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Profiles::CommentTemplatesController, feature_category: :user_profile do
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)
get '/-/profile/comment_templates'
end
it { expect(response).to have_gitlab_http_status(:not_found) }
end
describe 'feature flag enabled' do
before do
get '/-/profile/comment_templates'
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