summaryrefslogtreecommitdiff
path: root/features/steps/project/wall.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/project/wall.rb')
-rw-r--r--features/steps/project/wall.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/features/steps/project/wall.rb b/features/steps/project/wall.rb
deleted file mode 100644
index 7c61580eb2c..00000000000
--- a/features/steps/project/wall.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-class ProjectWall < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedProject
- include SharedNote
- include SharedPaths
-
-
- Given 'I write new comment "my special test message"' do
- within(".wall-note-form") do
- fill_in "note[note]", with: "my special test message"
- click_button "Add Comment"
- end
- end
-
- Then 'I should see project wall note "my special test message"' do
- page.should have_content "my special test message"
- end
-end