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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
f8ce8d28
Commit
f8ce8d28
authored
Sep 29, 2017
by
Tim Zallmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CHanged to String Statuses
parent
6c1210d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
spec/helpers/ci_status_helper_spec.rb
spec/helpers/ci_status_helper_spec.rb
+4
-4
No files found.
spec/helpers/ci_status_helper_spec.rb
View file @
f8ce8d28
...
@@ -8,13 +8,13 @@ describe CiStatusHelper do
...
@@ -8,13 +8,13 @@ describe CiStatusHelper do
describe
'#ci_icon_for_status'
do
describe
'#ci_icon_for_status'
do
it
'renders to correct svg on success'
do
it
'renders to correct svg on success'
do
expect
(
helper
.
ci_icon_for_status
(
success_commit
.
status
).
to_s
)
expect
(
helper
.
ci_icon_for_status
(
'success'
).
to_s
)
.
to
have_content
(
'status_success'
)
.
to
include
'status_success'
end
end
it
'renders the correct svg on failure'
do
it
'renders the correct svg on failure'
do
expect
(
helper
.
ci_icon_for_status
(
failed_commit
.
status
).
to_s
)
expect
(
helper
.
ci_icon_for_status
(
'failed'
.
status
).
to_s
)
.
to
have_content
(
'status_failed'
)
.
to
include
'status_failed'
end
end
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