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
Kazuhiko Shiozaki
gitlab-ce
Commits
3f1fad5f
Commit
3f1fad5f
authored
Dec 05, 2014
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an avatar_url spec when relative url is set.
parent
db585009
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
spec/helpers/application_helper_spec.rb
spec/helpers/application_helper_spec.rb
+10
-0
No files found.
spec/helpers/application_helper_spec.rb
View file @
3f1fad5f
...
@@ -66,6 +66,16 @@ describe ApplicationHelper do
...
@@ -66,6 +66,16 @@ describe ApplicationHelper do
avatar_icon
(
user
.
email
).
to_s
.
should
match
(
"/uploads/user/avatar/
#{
user
.
id
}
/gitlab_logo.png"
)
avatar_icon
(
user
.
email
).
to_s
.
should
match
(
"/uploads/user/avatar/
#{
user
.
id
}
/gitlab_logo.png"
)
end
end
it
"should return an url for the avatar with relative url"
do
Gitlab
.
config
.
gitlab
.
stub
(
relative_url_root:
"/gitlab"
)
Gitlab
.
config
.
gitlab
.
stub
(
url:
Settings
.
send
(
:build_gitlab_url
))
user
=
create
(
:user
)
user
.
avatar
=
File
.
open
(
avatar_file_path
)
user
.
save!
avatar_icon
(
user
.
email
).
to_s
.
should
match
(
"/gitlab//uploads/user/avatar/
#{
user
.
id
}
/gitlab_logo.png"
)
end
it
"should call gravatar_icon when no avatar is present"
do
it
"should call gravatar_icon when no avatar is present"
do
user
=
create
(
:user
,
email:
'test@example.com'
)
user
=
create
(
:user
,
email:
'test@example.com'
)
user
.
save!
user
.
save!
...
...
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