Commit e3987bb6 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #8585 from duduribeiro/fix_email_in_ssh_help_page

Fix the email variable substituation in ssh help page
parents a4bd1f2a d76d8974
.documentation.wiki .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)
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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment