Skip to content
Snippets Groups Projects
Commit 030a5d88 authored by Stan Hu's avatar Stan Hu
Browse files

Add spec for dashes in paths

parent af846297
No related branches found
No related tags found
No related merge requests found
Loading
@@ -130,15 +130,15 @@ class Spinach::Features::ProjectWiki < Spinach::FeatureSteps
Loading
@@ -130,15 +130,15 @@ class Spinach::Features::ProjectWiki < Spinach::FeatureSteps
   
step 'I create a New page with paths' do step 'I create a New page with paths' do
click_on 'New Page' click_on 'New Page'
fill_in 'Page slug', with: 'one/two/three' fill_in 'Page slug', with: 'one/two/three-test'
click_on 'Create Page' click_on 'Create Page'
fill_in "wiki_content", with: 'wiki content' fill_in "wiki_content", with: 'wiki content'
click_on "Create page" click_on "Create page"
expect(current_path).to include 'one/two/three' expect(current_path).to include 'one/two/three-test'
end end
   
step 'I should see non-escaped link in the pages list' do step 'I should see non-escaped link in the pages list' do
expect(page).to have_xpath("//a[@href='/#{project.path_with_namespace}/wikis/one/two/three']") expect(page).to have_xpath("//a[@href='/#{project.path_with_namespace}/wikis/one/two/three-test']")
end end
   
step 'I edit the Wiki page with a path' do step 'I edit the Wiki page with a path' do
Loading
@@ -147,7 +147,7 @@ class Spinach::Features::ProjectWiki < Spinach::FeatureSteps
Loading
@@ -147,7 +147,7 @@ class Spinach::Features::ProjectWiki < Spinach::FeatureSteps
end end
   
step 'I should see a non-escaped path' do step 'I should see a non-escaped path' do
expect(current_path).to include 'one/two/three' expect(current_path).to include 'one/two/three-test'
end end
   
step 'I should see the Editing page' do step 'I should see the Editing page' 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