diff options
author | Phil Hughes <me@iamphill.com> | 2016-04-19 15:58:20 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-05-26 10:04:17 +0100 |
commit | bc0666b3c906c990c1a10efc4b0acc73281ea533 (patch) | |
tree | 45e399b429dba60cd2de1a8c4d0d87baf79a09f2 /spec | |
parent | adc64e4583dc42399f681a9b17490f98b8c4bec0 (diff) | |
download | gitlab-ce-bc0666b3c906c990c1a10efc4b0acc73281ea533.tar.gz |
Filter issuables by any user
Closes #2836
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/issues/filter_issues_spec.rb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/spec/features/issues/filter_issues_spec.rb b/spec/features/issues/filter_issues_spec.rb index 1f0594e6b02..7efbaaa048c 100644 --- a/spec/features/issues/filter_issues_spec.rb +++ b/spec/features/issues/filter_issues_spec.rb @@ -294,4 +294,40 @@ describe 'Filter issues', feature: true do end end end + + describe 'filter by any author', js: true do + before do + user2 = create(:user, name: "tester") + create(:issue, project: project, author: user) + create(:issue, project: project, author: user2) + + visit namespace_project_issues_path(project.namespace, project) + end + + it 'should show filter by any author link' do + click_button "Author" + fill_in "Search authors", with: "tester" + + page.within ".dropdown-menu-author" do + expect(page).to have_content "tester" + end + end + + it 'should show filter issues by any author' do + page.within '.issues-list' do + expect(page).to have_selector ".issue", count: 2 + end + + click_button "Author" + fill_in "Search authors", with: "tester" + + page.within ".dropdown-menu-author" do + click_link "tester" + end + + page.within '.issues-list' do + expect(page).to have_selector ".issue", count: 1 + end + end + end end |