summaryrefslogtreecommitdiff
path: root/features/steps/project
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-09-22 11:14:55 +0000
committerRémy Coutable <remy@rymai.me>2017-09-22 11:14:55 +0000
commitc01bd64f56d2df6569614cb0bc5844df1be0368d (patch)
tree3be3b02c0644d1876b6ed61b6f396795a3ff4321 /features/steps/project
parent8d571b146d518a979ea0cbe062abbb576a58927c (diff)
parent0ed3d8a07b997651df5f2b18b11bb1e0cb1c74de (diff)
downloadgitlab-ce-c01bd64f56d2df6569614cb0bc5844df1be0368d.tar.gz
Merge branch 'replace_project_shortcuts.feature' into 'master'
Replace the 'project/shortcuts.feature' spinach test with an rspec analog See merge request gitlab-org/gitlab-ce!14431
Diffstat (limited to 'features/steps/project')
-rw-r--r--features/steps/project/project_shortcuts.rb42
1 files changed, 0 insertions, 42 deletions
diff --git a/features/steps/project/project_shortcuts.rb b/features/steps/project/project_shortcuts.rb
deleted file mode 100644
index cebf09750b0..00000000000
--- a/features/steps/project/project_shortcuts.rb
+++ /dev/null
@@ -1,42 +0,0 @@
-class Spinach::Features::ProjectShortcuts < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedPaths
- include SharedProject
- include SharedProjectTab
- include SharedShortcuts
-
- step 'I press "g" and "f"' do
- find('body').native.send_key('g')
- find('body').native.send_key('f')
- end
-
- step 'I press "g" and "c"' do
- find('body').native.send_key('g')
- find('body').native.send_key('c')
- end
-
- step 'I press "g" and "n"' do
- find('body').native.send_key('g')
- find('body').native.send_key('n')
- end
-
- step 'I press "g" and "d"' do
- find('body').native.send_key('g')
- find('body').native.send_key('d')
- end
-
- step 'I press "g" and "s"' do
- find('body').native.send_key('g')
- find('body').native.send_key('s')
- end
-
- step 'I press "g" and "w"' do
- find('body').native.send_key('g')
- find('body').native.send_key('w')
- end
-
- step 'I press "g" and "e"' do
- find('body').native.send_key('g')
- find('body').native.send_key('e')
- end
-end