Commit 0879babfd1224626d0523a66caca0cac44ee9ee8

Authored by Marin Jankovski
1 parent c1551c6e

Fix feature.

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
features/steps/help.rb
... ... @@ -8,14 +8,14 @@ class Spinach::Features::Help < Spinach::FeatureSteps
8 8 end
9 9  
10 10 step 'I visit the "Rake Tasks" help page' do
11   - visit help_page_path("raketasks", "README")
  11 + visit help_page_path("raketasks", "maintenance")
12 12 end
13 13  
14 14 step 'I should see "Rake Tasks" page markdown rendered' do
15   - page.should have_content "GitLab provides some specific rake tasks to enable special features or perform maintenance tasks"
  15 + page.should have_content "Gather information about GitLab and the system it runs on"
16 16 end
17 17  
18 18 step 'Header "Rebuild project satellites" should have correct ids and links' do
19   - header_should_have_correct_id_and_link(3, '(Re-)Create satellite repos', 're-create-satellite-repos')
  19 + header_should_have_correct_id_and_link(3, '(Re-)Create satellite repos', 're-create-satellite-repos', '.documentation')
20 20 end
21 21 end
... ...