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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-07-08 17:22:13 +0300
committerRémy Coutable <remy@rymai.me>2016-07-08 17:22:13 +0300
commit1fefc2831eed7f88ecead78cc6fbc9836e94fa64 (patch)
treedd9331af1faa8754dbadb71760d388efff4a8fed /spec/features/admin/admin_abuse_reports_spec.rb
parent354471bd7c1a1d00e1105bbd938756fd26709ca2 (diff)
parent7dba769886e662d4a5701285421f6e75b917d1eb (diff)
Merge remote-tracking branch 'origin/master' into 8-10-stable
Diffstat (limited to 'spec/features/admin/admin_abuse_reports_spec.rb')
-rw-r--r--spec/features/admin/admin_abuse_reports_spec.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/spec/features/admin/admin_abuse_reports_spec.rb b/spec/features/admin/admin_abuse_reports_spec.rb
new file mode 100644
index 00000000000..16baf7e9516
--- /dev/null
+++ b/spec/features/admin/admin_abuse_reports_spec.rb
@@ -0,0 +1,30 @@
+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)
+ login_as :admin
+ end
+
+ describe 'in the abuse report view' do
+ it "should present a link to the user's profile" do
+ visit admin_abuse_reports_path
+
+ expect(page).to have_link user.name, href: user_path(user)
+ end
+ end
+
+ describe 'in the profile page of the user' do
+ it 'should show a link to the admin view of the user' do
+ visit user_path(user)
+
+ expect(page).to have_link '', href: admin_user_path(user)
+ end
+ end
+ end
+ end
+end