diff options
author | Vitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com> | 2017-09-22 14:29:19 +1100 |
---|---|---|
committer | Vitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com> | 2017-09-22 14:29:19 +1100 |
commit | 0ed3d8a07b997651df5f2b18b11bb1e0cb1c74de (patch) | |
tree | 26944f4126c74644dc4f1aa772bc5745b0d1b94f /features/steps | |
parent | 92173ac55cd921a65ce137e238ed8bc4474aaccb (diff) | |
download | gitlab-ce-0ed3d8a07b997651df5f2b18b11bb1e0cb1c74de.tar.gz |
Replace the 'project/shortcuts.feature' spinach test with an rspec analogreplace_project_shortcuts.feature
Diffstat (limited to 'features/steps')
-rw-r--r-- | features/steps/project/project_shortcuts.rb | 42 |
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 |