mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 08:36:06 +10:00
Remove issues search rspec since we test it with spinach too
This commit is contained in:
@@ -47,7 +47,6 @@ Feature: Project Issues
|
||||
Then I should not see "Release 0.4" in issues
|
||||
And I should not see "Release 0.3" in issues
|
||||
|
||||
|
||||
@javascript
|
||||
Scenario: I search all issues
|
||||
Given I click link "All"
|
||||
|
||||
@@ -45,40 +45,6 @@ describe "Issues" do
|
||||
end
|
||||
end
|
||||
|
||||
describe "Search issue", js: true do
|
||||
before do
|
||||
['foobar', 'foobar2', 'gitlab'].each do |title|
|
||||
create(:issue,
|
||||
author: @user,
|
||||
assignee: @user,
|
||||
project: project,
|
||||
title: title)
|
||||
end
|
||||
end
|
||||
|
||||
it "should be able to search on different statuses" do
|
||||
issue = Issue.first # with title 'foobar'
|
||||
issue.close
|
||||
|
||||
visit project_issues_path(project)
|
||||
click_link 'Closed'
|
||||
fill_in 'issue_search', with: 'foobar'
|
||||
|
||||
page.should have_content 'foobar'
|
||||
page.should_not have_content 'foobar2'
|
||||
page.should_not have_content 'gitlab'
|
||||
end
|
||||
|
||||
it "should search for term and return the correct results" do
|
||||
visit project_issues_path(project)
|
||||
fill_in 'issue_search', with: 'foobar'
|
||||
|
||||
page.should have_content 'foobar'
|
||||
page.should have_content 'foobar2'
|
||||
page.should_not have_content 'gitlab'
|
||||
end
|
||||
end
|
||||
|
||||
describe "Filter issue" do
|
||||
before do
|
||||
['foobar', 'barbaz', 'gitlab'].each do |title|
|
||||
|
||||
Reference in New Issue
Block a user