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:
authorMarin Jankovski <marin@gitlab.com>2014-05-29 12:13:30 +0400
committerMarin Jankovski <marin@gitlab.com>2014-05-29 12:13:30 +0400
commit0879babfd1224626d0523a66caca0cac44ee9ee8 (patch)
tree4228a9cdaa39a84cd8833731315d8ffda4ec1777 /features
parentc1551c6ed077a00731e692edc1a7ddb0b1f29ad1 (diff)
Fix feature.
Diffstat (limited to 'features')
-rw-r--r--features/steps/help.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/help.rb b/features/steps/help.rb
index 770aceadb89..bfb3a38a29f 100644
--- a/features/steps/help.rb
+++ b/features/steps/help.rb
@@ -8,14 +8,14 @@ class Spinach::Features::Help < Spinach::FeatureSteps
end
step 'I visit the "Rake Tasks" help page' do
- visit help_page_path("raketasks", "README")
+ visit help_page_path("raketasks", "maintenance")
end
step 'I should see "Rake Tasks" page markdown rendered' do
- page.should have_content "GitLab provides some specific rake tasks to enable special features or perform maintenance tasks"
+ page.should have_content "Gather information about GitLab and the system it runs on"
end
step 'Header "Rebuild project satellites" should have correct ids and links' do
- header_should_have_correct_id_and_link(3, '(Re-)Create satellite repos', 're-create-satellite-repos')
+ header_should_have_correct_id_and_link(3, '(Re-)Create satellite repos', 're-create-satellite-repos', '.documentation')
end
end