Skip to content
Snippets Groups Projects
Commit 4f365066 authored by Sean McGivern's avatar Sean McGivern
Browse files

Merge branch 'remove-your_email-gsub-in-help-page' into 'master'

Stop replacing `$your_email` with the user's email in the `/help` pages

See merge request !8014
parents ffa1b67d 41dd01b1
No related branches found
No related tags found
No related merge requests found
- page_title @path.split("/").reverse.map(&:humanize)
.documentation.wiki
= markdown @markdown.gsub('$your_email', current_user.try(:email) || "email@example.com")
= markdown @markdown
require 'spec_helper'
 
describe 'Help Pages', feature: true do
describe 'Show SSH page' do
before do
login_as :user
end
it 'replaces the variable $your_email with the email of the user' do
visit help_page_path('ssh/README')
expect(page).to have_content("ssh-keygen -t rsa -C \"#{@user.email}\"")
end
end
describe 'Get the main help page' do
shared_examples_for 'help page' do |prefix: ''|
it 'prefixes links correctly' do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment