Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Ribeiro <duduribeiro.gba@gmail.com>2015-01-18 19:21:18 +0300
committerCarlos Ribeiro <duduribeiro.gba@gmail.com>2015-01-18 19:21:18 +0300
commitd76d8974928c238eed133cced439cbde4dd3239c (patch)
tree45825a5ea52781dc8294334a0eab4cd68886859c /spec/features/help_pages_spec.rb
parent714ef622644ff478f9538f9b0b4d160d6340214f (diff)
Change to single-quoted strings in help_pages_spec
Diffstat (limited to 'spec/features/help_pages_spec.rb')
-rw-r--r--spec/features/help_pages_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/help_pages_spec.rb b/spec/features/help_pages_spec.rb
index fe73be6519c..5850a24a420 100644
--- a/spec/features/help_pages_spec.rb
+++ b/spec/features/help_pages_spec.rb
@@ -1,12 +1,12 @@
require 'spec_helper'
-describe "Help Pages", feature: true do
- describe "Show SSH page" do
+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")
+ 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