Fix the email variable substituation in ssh help page
This commit is contained in:
parent
23255bff99
commit
714ef62264
2 changed files with 14 additions and 1 deletions
|
@ -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)
|
||||
|
|
13
spec/features/help_pages_spec.rb
Normal file
13
spec/features/help_pages_spec.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue