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
Jérome Perrin
gitlab-ce
Commits
81eaf171
Commit
81eaf171
authored
Nov 09, 2017
by
Tim Zallmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed URL Matching in Tests
parent
25eea058
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
spec/helpers/icons_helper_spec.rb
spec/helpers/icons_helper_spec.rb
+6
-6
No files found.
spec/helpers/icons_helper_spec.rb
View file @
81eaf171
...
...
@@ -16,10 +16,10 @@ describe IconsHelper do
end
end
describe
'sprite_icon'
do
describe
'sprite_icon
_path
'
do
it
'returns relative path'
do
expect
(
sprite_icon_path
())
.
to
eq
"/image/icons.svg"
.
to
eq
image_path
(
"icons.svg"
)
end
context
'when an asset_host is set in the config it will return an absolute local URL'
do
...
...
@@ -32,7 +32,7 @@ describe IconsHelper do
it
'returns an absolute URL on that asset host'
do
gitlab_url
=
Gitlab
.
config
.
gitlab
.
url
expect
(
sprite_icon_path
())
.
to
eq
"
#{
gitlab_url
}
/image/icons.svg"
.
to
eq
image_path
(
"icons.svg"
,
host:
Gitlab
.
config
.
gitlab
.
url
)
end
end
end
...
...
@@ -42,17 +42,17 @@ describe IconsHelper do
it
'returns svg icon html'
do
expect
(
sprite_icon
(
icon_name
).
to_s
)
.
to
eq
"<svg><use xlink:href=
\"
/images/icons.svg
#
#{
icon_name
}
\"
></use></svg>"
.
to
eq
"<svg><use xlink:href=
\"
#{
image_path
(
"icons.svg"
)
}
#
#{
icon_name
}
\"
></use></svg>"
end
it
'returns svg icon html + size classes'
do
expect
(
sprite_icon
(
icon_name
,
size:
72
).
to_s
)
.
to
eq
"<svg class=
\"
s72
\"
><use xlink:href=
\"
/images/icons.svg
#
#{
icon_name
}
\"
></use></svg>"
.
to
eq
"<svg class=
\"
s72
\"
><use xlink:href=
\"
#{
image_path
(
"icons.svg"
)
}
#
#{
icon_name
}
\"
></use></svg>"
end
it
'returns svg icon html + size classes + additional class'
do
expect
(
sprite_icon
(
icon_name
,
size:
72
,
css_class:
'icon-danger'
).
to_s
)
.
to
eq
"<svg class=
\"
s72 icon-danger
\"
><use xlink:href=
\"
/images/icons.svg#
#{
icon_name
}
\"
></use></svg>"
.
to
eq
"<svg class=
\"
s72 icon-danger
\"
><use xlink:href=
\"
#{
image_path
(
"icons.svg"
)
}
#{
icon_name
}
\"
></use></svg>"
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