summaryrefslogtreecommitdiff
path: root/spec/features/admin
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2016-07-07 18:39:45 -0500
committerPatricio Cano <suprnova32@gmail.com>2016-07-07 18:39:45 -0500
commitbe6c4fef40a937757a0e95ba758bf1b6da0155d7 (patch)
tree5e5539faeae7cacc3ab3dc2305903ff5d19dff6e /spec/features/admin
parent1867d0d505baf518fe92d3c306fddfb56e68a810 (diff)
downloadgitlab-ce-be6c4fef40a937757a0e95ba758bf1b6da0155d7.tar.gz
Removed unnecessary `id` from links and corrected tests to use the proper matcher.9127-link-report-to-profile
Diffstat (limited to 'spec/features/admin')
-rw-r--r--spec/features/admin/admin_abuse_reports_spec.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/spec/features/admin/admin_abuse_reports_spec.rb b/spec/features/admin/admin_abuse_reports_spec.rb
index 2ff02a1c9a8..16baf7e9516 100644
--- a/spec/features/admin/admin_abuse_reports_spec.rb
+++ b/spec/features/admin/admin_abuse_reports_spec.rb
@@ -6,16 +6,15 @@ describe "Admin::AbuseReports", feature: true, js: true do
context 'as an admin' do
describe 'if a user has been reported for abuse' do
before do
- admin = create(:admin)
create(:abuse_report, user: user)
- login_as admin
+ 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_selector '#abuser_profile_path'
+ expect(page).to have_link user.name, href: user_path(user)
end
end
@@ -23,7 +22,7 @@ describe "Admin::AbuseReports", feature: true, js: true do
it 'should show a link to the admin view of the user' do
visit user_path(user)
- expect(page).to have_selector '#admin_user_path'
+ expect(page).to have_link '', href: admin_user_path(user)
end
end
end