summaryrefslogtreecommitdiff
path: root/spec/features/search_spec.rb
diff options
context:
space:
mode:
authorYarNayar <YarTheGreat@gmail.com>2016-12-08 17:54:45 +0300
committerYarNayar <YarTheGreat@gmail.com>2017-01-24 14:56:00 +0300
commitdd3ddcd72bbfec3ba5bbcd871a9ac68064be7501 (patch)
treec8af4e24a8d87e788e601057c325907b6580ffac /spec/features/search_spec.rb
parentf1568d71f073165c86668bd09c1d228cbb6d474b (diff)
downloadgitlab-ce-dd3ddcd72bbfec3ba5bbcd871a9ac68064be7501.tar.gz
Allows to search within project by commit's hash
Was proposed in #24833
Diffstat (limited to 'spec/features/search_spec.rb')
-rw-r--r--spec/features/search_spec.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/features/search_spec.rb b/spec/features/search_spec.rb
index a05b83959fb..c64aeea0612 100644
--- a/spec/features/search_spec.rb
+++ b/spec/features/search_spec.rb
@@ -211,4 +211,19 @@ describe "Search", feature: true do
end
end
end
+
+ describe 'search for commits' do
+ before do
+ visit search_path(project_id: project.id)
+ end
+
+ it 'shows multiple matching commits' do
+ fill_in 'search', with: 'See merge request'
+
+ click_button 'Search'
+ click_link 'Commits'
+
+ expect(page).to have_selector('.commit-row-description', count: 9)
+ end
+ end
end