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

abuse_reports.rb « fixtures « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad0fb9be8dc62d9c5d7d54d0546860a26c510724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Admin::AbuseReportsController, '(JavaScript fixtures)', type: :controller do
  include JavaScriptFixturesHelpers
  include AdminModeHelper

  let(:admin) { create(:admin) }
  let!(:abuse_report) { create(:abuse_report) }
  let!(:abuse_report_with_short_message) { create(:abuse_report, message: 'SHORT MESSAGE') }
  let!(:abuse_report_with_long_message) { create(:abuse_report, message: "LONG MESSAGE\n" * 50) }

  render_views

  before do
    stub_feature_flags(abuse_reports_list: false)

    sign_in(admin)
    enable_admin_mode!(admin)
  end

  it 'abuse_reports/abuse_reports_list.html' do
    get :index

    expect(response).to be_successful
  end
end