mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
Merge pull request #8585 from duduribeiro/fix_email_in_ssh_help_page
Fix the email variable substituation in ssh help page
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
.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)
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
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
|
||||
Reference in New Issue
Block a user