summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-04-21 13:42:47 -0500
committerAlfredo Sumaran <alfredo@gitlab.com>2016-04-21 14:23:03 -0500
commitf5a6ff15481367573dd65d39ad3fbb689131349a (patch)
tree26ae6857bfb561580e0830f2a9e09ea0ea8a0899
parent3b39214f29f5c2e773f2af923cec70a463f39a73 (diff)
downloadgitlab-ce-f5a6ff15481367573dd65d39ad3fbb689131349a.tar.gz
Remove spinach features
-rw-r--r--features/project/shortcuts.feature5
-rw-r--r--features/steps/project/project_shortcuts.rb4
-rw-r--r--features/steps/shared/project.rb4
3 files changed, 0 insertions, 13 deletions
diff --git a/features/project/shortcuts.feature b/features/project/shortcuts.feature
index f6442655911..10e7c234610 100644
--- a/features/project/shortcuts.feature
+++ b/features/project/shortcuts.feature
@@ -56,8 +56,3 @@ Feature: Project Shortcuts
Scenario: Navigate to project feed
Given I press "g" and "e"
Then the active main tab should be Activity
-
- @javascript
- Scenario: Navigate to new Issue page
- Given I press "i"
- Then I should see the new issue page
diff --git a/features/steps/project/project_shortcuts.rb b/features/steps/project/project_shortcuts.rb
index c42623e81cc..49e9c5520bb 100644
--- a/features/steps/project/project_shortcuts.rb
+++ b/features/steps/project/project_shortcuts.rb
@@ -38,8 +38,4 @@ class Spinach::Features::ProjectShortcuts < Spinach::FeatureSteps
find('body').native.send_key('g')
find('body').native.send_key('e')
end
-
- step 'I press "i"' do
- find('body').native.send_key('i')
- end
end
diff --git a/features/steps/shared/project.rb b/features/steps/shared/project.rb
index 914ffef7be4..ea5f9580308 100644
--- a/features/steps/shared/project.rb
+++ b/features/steps/shared/project.rb
@@ -102,10 +102,6 @@ module SharedProject
@project ||= Project.first
end
- step 'I should see the new issue page' do
- expect(page).to have_content('New Issue')
- end
-
# ----------------------------------------
# Project permissions
# ----------------------------------------