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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-13 15:29:26 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-13 15:29:26 +0400
commitd593c98fcbd34789068a72c9386f69a152107139 (patch)
treee660dedb0ce4a97b9122e9debb5f3f5f32abf10e /features
parent1355ede49d02e2a7b1715a3ed6bd7389bfedf6bc (diff)
Delete wall notes tests
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features')
-rw-r--r--features/project/active_tab.feature5
-rw-r--r--features/project/wall.feature16
-rw-r--r--features/steps/project/wall.rb18
-rw-r--r--features/steps/shared/paths.rb8
4 files changed, 0 insertions, 47 deletions
diff --git a/features/project/active_tab.feature b/features/project/active_tab.feature
index 48c217fbea7..ce90a086688 100644
--- a/features/project/active_tab.feature
+++ b/features/project/active_tab.feature
@@ -35,11 +35,6 @@ Feature: Project active tab
Then the active main tab should be Merge Requests
And no other main tabs should be active
- Scenario: On Project Wall
- Given I visit my project's wall page
- Then the active main tab should be Wall
- And no other main tabs should be active
-
Scenario: On Project Wiki
Given I visit my project's wiki page
Then the active main tab should be Wiki
diff --git a/features/project/wall.feature b/features/project/wall.feature
deleted file mode 100644
index c38d046a850..00000000000
--- a/features/project/wall.feature
+++ /dev/null
@@ -1,16 +0,0 @@
-Feature: Project Wall
- In order to use Project Wall
- A user should be able to read and write messages
-
- Background:
- Given I sign in as a user
- And I own project "Shop"
- And I visit project "Shop" wall page
-
- @javascript
- Scenario: Write comment
- Given I write new comment "my special test message"
- Then I should see project wall note "my special test message"
-
- Then I visit project "Shop" wall page
- And I should see project wall note "my special test message"
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
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb
index 449f2f9c5ef..2090b642059 100644
--- a/features/steps/shared/paths.rb
+++ b/features/steps/shared/paths.rb
@@ -204,10 +204,6 @@ module SharedPaths
visit project_merge_requests_path(@project)
end
- step "I visit my project's wall page" do
- visit project_wall_path(@project)
- end
-
step "I visit my project's wiki page" do
visit project_wiki_path(@project, :home)
end
@@ -319,10 +315,6 @@ module SharedPaths
visit project_team_index_path(project)
end
- step 'I visit project "Shop" wall page' do
- visit project_wall_path(project)
- end
-
step 'I visit project wiki page' do
visit project_wiki_path(@project, :home)
end