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
e3987bb6
Commit
e3987bb6
authored
Jan 19, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8585 from duduribeiro/fix_email_in_ssh_help_page
Fix the email variable substituation in ssh help page
parents
a4bd1f2a
d76d8974
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
app/views/help/show.html.haml
app/views/help/show.html.haml
+1
-1
spec/features/help_pages_spec.rb
spec/features/help_pages_spec.rb
+13
-0
No files found.
app/views/help/show.html.haml
View file @
e3987bb6
.documentation.wiki
=
markdown
File
.
read
(
Rails
.
root
.
join
(
'doc'
,
@category
,
@file
+
'.md'
))
=
markdown
File
.
read
(
Rails
.
root
.
join
(
'doc'
,
@category
,
@file
+
'.md'
))
.
gsub
(
"$your_email"
,
current_user
.
email
)
spec/features/help_pages_spec.rb
0 → 100644
View file @
e3987bb6
require
'spec_helper'
describe
'Help Pages'
,
feature:
true
do
describe
'Show SSH page'
do
before
do
login_as
:user
end
it
'replace the variable $your_email with the email of the user'
do
visit
help_page_path
(
category:
'ssh'
,
file:
'ssh.md'
)
page
.
should
have_content
(
"ssh-keygen -t rsa -C
\"
#{
@user
.
email
}
\"
"
)
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