summaryrefslogtreecommitdiff
path: root/features/step_definitions/project/project_wiki_steps.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/step_definitions/project/project_wiki_steps.rb')
-rw-r--r--features/step_definitions/project/project_wiki_steps.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/features/step_definitions/project/project_wiki_steps.rb b/features/step_definitions/project/project_wiki_steps.rb
deleted file mode 100644
index 31fc050aa4c..00000000000
--- a/features/step_definitions/project/project_wiki_steps.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-Given /^I create Wiki page$/ do
- fill_in "Title", :with => 'Test title'
- fill_in "Content", :with => '[link test](test)'
- click_on "Save"
-end
-
-Then /^I should see newly created wiki page$/ do
- page.should have_content("Test title")
- page.should have_content("link test")
-
- click_link "link test"
-
- page.should have_content("Editing page")
-end