diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-06-24 21:47:20 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-07-06 22:39:55 -0400 |
commit | cfd813402deb631bdc4db9af68c6366ff1179f4a (patch) | |
tree | 89d3f58f7cc9f44a30e673beb8e01fbff6221dfb /spec | |
parent | 3ee3cb24d44e8a9a1284fbd0944b9fcfb938c494 (diff) | |
download | gitlab-ce-cfd813402deb631bdc4db9af68c6366ff1179f4a.tar.gz |
Remove duplicate feature spec for filtering issues by no milestone
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/issues_spec.rb | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/spec/features/issues_spec.rb b/spec/features/issues_spec.rb index 808a6eeb958..32fd4065bb4 100644 --- a/spec/features/issues_spec.rb +++ b/spec/features/issues_spec.rb @@ -92,22 +92,6 @@ describe 'Issues', feature: true do let(:issue) { @issue } - it 'should allow filtering by issues with no specified milestone' do - visit namespace_project_issues_path(project.namespace, project, milestone_title: IssuableFinder::NONE) - - expect(page).not_to have_content 'foobar' - expect(page).to have_content 'barbaz' - expect(page).to have_content 'gitlab' - end - - it 'should allow filtering by a specified milestone' do - visit namespace_project_issues_path(project.namespace, project, milestone_title: issue.milestone.title) - - expect(page).to have_content 'foobar' - expect(page).not_to have_content 'barbaz' - expect(page).not_to have_content 'gitlab' - end - it 'should allow filtering by issues with no specified assignee' do visit namespace_project_issues_path(project.namespace, project, assignee_id: IssuableFinder::NONE) |