diff options
author | Porus Patell <ppatell@perforce.com> | 2014-08-15 12:51:43 -0700 |
---|---|---|
committer | Porus Patell <ppatell@perforce.com> | 2014-08-25 12:19:41 -0700 |
commit | 6136dd5a751b22cf88609840a89a40ffbc0b9145 (patch) | |
tree | 1af2eebedbdf221f4996294f0eeeaa54881864c7 /features/steps/project | |
parent | 54c20837032cb1bae03f9794cc39884224bf91d3 (diff) | |
download | gitlab-ce-6136dd5a751b22cf88609840a89a40ffbc0b9145.tar.gz |
Adding Spinach tests for 'search issues by description field' feature
Diffstat (limited to 'features/steps/project')
-rw-r--r-- | features/steps/project/issues.rb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/features/steps/project/issues.rb b/features/steps/project/issues.rb index 557ea2fdca8..be42bfcc024 100644 --- a/features/steps/project/issues.rb +++ b/features/steps/project/issues.rb @@ -187,4 +187,39 @@ class ProjectIssues < Spinach::FeatureSteps step 'The code block should be unchanged' do page.should have_content("```\nCommand [1]: /usr/local/bin/git , see [text](doc/text)\n```") end + + step 'project "Shop" has issue "Bugfix1" with description: "Description for issue1"' do + project = Project.find_by(name: "Shop") + issue = create(:issue, title: "Bugfix1", description: "Description for issue1", project: project) + end + + step 'project "Shop" has issue "Feature1" with description: "Feature submitted for issue1"' do + project = Project.find_by(name: "Shop") + issue = create(:issue, title: "Feature1", description: "Feature submitted for issue1", project: project) + end + + step 'I fill in issue search with "Description for issue1"' do + fill_in 'issue_search', with: "Description for issue" + end + + step 'I fill in issue search with "issue1"' do + fill_in 'issue_search', with: "issue1" + end + + step 'I fill in issue search with "Rock and roll"' do + fill_in 'issue_search', with: "Description for issue" + end + + step 'I should see "Bugfix1" in issues' do + page.should have_content "Bugfix1" + end + + step 'I should see "Feature1" in issues' do + page.should have_content "Feature1" + end + + + step 'I should not see "Bugfix1" in issues' do + page.should_not have_content "Bugfix1" + end end |