summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-04-21 14:24:36 -0500
committerAlfredo Sumaran <alfredo@gitlab.com>2016-04-21 14:24:36 -0500
commit6e9ce9a6cd826f409af11ce2cadcfc6b5143bd1a (patch)
tree7702592b4dc07537c7270a322e949152d55f8a4e
parentf5a6ff15481367573dd65d39ad3fbb689131349a (diff)
downloadgitlab-ce-issue_14904.tar.gz
Add Rspec test for "i" shortcutissue_14904
-rw-r--r--spec/features/project/shortcuts_spec.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/features/project/shortcuts_spec.rb b/spec/features/project/shortcuts_spec.rb
new file mode 100644
index 00000000000..2595c4181e5
--- /dev/null
+++ b/spec/features/project/shortcuts_spec.rb
@@ -0,0 +1,21 @@
+require 'spec_helper'
+
+feature 'Project shortcuts', feature: true do
+ let(:project) { create(:project) }
+ let(:user) { create(:user) }
+
+ describe 'On a project', js: true do
+ before do
+ project.team << [user, :master]
+ login_as user
+ visit namespace_project_path(project.namespace, project)
+ end
+
+ describe 'pressing "i"' do
+ it 'redirects to new issue page' do
+ find('body').native.send_key('i')
+ expect(page).to have_content('New Issue')
+ end
+ end
+ end
+end