diff options
author | Phil Hughes <me@iamphill.com> | 2016-04-11 11:38:24 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-04-11 11:38:24 +0100 |
commit | 2f4dc45da2fbe6ab4469f1c836683bec9c8f0dd9 (patch) | |
tree | ea6b5ac2816a7cc2b5bc8d49b396470531d653d6 /spec | |
parent | 85279c07c9be889a25811a685110ab57a217651e (diff) | |
download | gitlab-ce-2f4dc45da2fbe6ab4469f1c836683bec9c8f0dd9.tar.gz |
Fixed issue with dashboard/issues not filtering by milestonedashboard-filter-milestone
Closes #15128
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/dashboard_issues_spec.rb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/spec/features/dashboard_issues_spec.rb b/spec/features/dashboard_issues_spec.rb new file mode 100644 index 00000000000..39805da9d0b --- /dev/null +++ b/spec/features/dashboard_issues_spec.rb @@ -0,0 +1,54 @@ +require 'spec_helper' + +describe "Dashboard Issues filtering", feature: true, js: true do + let(:user) { create(:user) } + let(:project) { create(:project) } + let(:milestone) { create(:milestone, project: project) } + + context 'filtering by milestone' do + before do + project.team << [user, :master] + login_as(user) + + create(:issue, project: project, author: user, assignee: user) + create(:issue, project: project, author: user, assignee: user, milestone: milestone) + + visit_issues + end + + it 'should show all issues with no milestone' do + show_milestone_dropdown + + click_link 'No Milestone' + + expect(page).to have_selector('.issue', count: 1) + end + + it 'should show all issues with any milestone' do + show_milestone_dropdown + + click_link 'Any Milestone' + + expect(page).to have_selector('.issue', count: 2) + end + + it 'should show all issues with the selected milestone' do + show_milestone_dropdown + + page.within '.dropdown-content' do + click_link milestone.title + end + + expect(page).to have_selector('.issue', count: 1) + end + end + + def show_milestone_dropdown + click_button 'Milestone' + expect(page).to have_selector('.dropdown-content', visible: true) + end + + def visit_issues + visit issues_dashboard_path + end +end |