summaryrefslogtreecommitdiff
path: root/spec/features/projects/shortcuts_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/shortcuts_spec.rb')
-rw-r--r--spec/features/projects/shortcuts_spec.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/spec/features/projects/shortcuts_spec.rb b/spec/features/projects/shortcuts_spec.rb
deleted file mode 100644
index bf18c444c3d..00000000000
--- a/spec/features/projects/shortcuts_spec.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'spec_helper'
-
-feature 'Project shortcuts' do
- let(:project) { create(:project, name: 'Victorialand') }
- let(:user) { create(:user) }
-
- describe 'On a project', js: true do
- before do
- project.team << [user, :master]
- sign_in user
- visit project_path(project)
- end
-
- describe 'pressing "i"' do
- it 'redirects to new issue page' do
- find('body').native.send_key('i')
- expect(page).to have_content('Victorialand')
- end
- end
- end
-end