BigW Consortium Gitlab

admin_abuse_reports_spec.rb 776 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
require 'spec_helper'

describe "Admin::AbuseReports", feature: true, js: true  do
  let(:user) { create(:user) }

  context 'as an admin' do
    describe 'if a user has been reported for abuse' do
      before do
        create(:abuse_report, user: user)
10
        login_as :admin
11 12 13
      end

      describe 'in the abuse report view' do
14
        it "presents a link to the user's profile" do
15 16
          visit admin_abuse_reports_path

17
          expect(page).to have_link user.name, href: user_path(user)
18 19 20 21
        end
      end

      describe 'in the profile page of the user' do
22
        it 'shows a link to the admin view of the user' do
23 24
          visit user_path(user)

25
          expect(page).to have_link '', href: admin_user_path(user)
26 27 28 29 30
        end
      end
    end
  end
end