Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
73f6218e
Commit
73f6218e
authored
Nov 23, 2016
by
Semyon Pupkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move admin abuse report spinach test to rspec
https://gitlab.com/gitlab-org/gitlab-ce/issues/23036
parent
536ec509
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
29 deletions
+14
-29
changelogs/unreleased/move-admin-abuse-report-spinach-test-to-rspec.yml
...eleased/move-admin-abuse-report-spinach-test-to-rspec.yml
+4
-0
features/admin/abuse_report.feature
features/admin/abuse_report.feature
+0
-8
features/steps/admin/abuse_reports.rb
features/steps/admin/abuse_reports.rb
+0
-15
spec/features/admin/admin_abuse_reports_spec.rb
spec/features/admin/admin_abuse_reports_spec.rb
+10
-6
No files found.
changelogs/unreleased/move-admin-abuse-report-spinach-test-to-rspec.yml
0 → 100644
View file @
73f6218e
---
title
:
Move admin abuse report spinach test to rspec
merge_request
:
7691
author
:
Semyon Pupkov
features/admin/abuse_report.feature
deleted
100644 → 0
View file @
536ec509
Feature
:
Admin Abuse reports
Background
:
Given
I sign in as an admin
And
abuse reports exist
Scenario
:
Browse abuse reports
When
I visit abuse reports page
Then
I should see list of abuse reports
features/steps/admin/abuse_reports.rb
deleted
100644 → 0
View file @
536ec509
class
Spinach::Features::AdminAbuseReports
<
Spinach
::
FeatureSteps
include
SharedAuthentication
include
SharedPaths
include
SharedAdmin
step
'I should see list of abuse reports'
do
page
.
should
have_content
(
"Abuse Reports"
)
page
.
should
have_content
AbuseReport
.
first
.
message
page
.
should
have_link
(
"Remove user"
)
end
step
'abuse reports exist'
do
create
(
:abuse_report
)
end
end
spec/features/admin/admin_abuse_reports_spec.rb
View file @
73f6218e
...
...
@@ -4,17 +4,21 @@ describe "Admin::AbuseReports", feature: true, js: true do
let
(
:user
)
{
create
(
:user
)
}
context
'as an admin'
do
before
do
login_as
:admin
end
describe
'if a user has been reported for abuse'
do
before
do
create
(
:abuse_report
,
user:
user
)
login_as
:admin
end
let!
(
:abuse_report
)
{
create
(
:abuse_report
,
user:
user
)
}
describe
'in the abuse report view'
do
it
"presents a link to the user's profile"
do
it
'presents information about abuse report'
do
visit
admin_abuse_reports_path
expect
(
page
).
to
have_link
user
.
name
,
href:
user_path
(
user
)
expect
(
page
).
to
have_content
(
'Abuse Reports'
)
expect
(
page
).
to
have_content
(
abuse_report
.
message
)
expect
(
page
).
to
have_link
(
user
.
name
,
href:
user_path
(
user
))
expect
(
page
).
to
have_link
(
'Remove user'
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment