diff options
author | Porus Patell <ppatell@perforce.com> | 2014-08-19 18:43:02 -0700 |
---|---|---|
committer | Porus Patell <ppatell@perforce.com> | 2014-08-25 12:20:08 -0700 |
commit | eeebf7dae61676f79a482930174d37e3afb79dd6 (patch) | |
tree | ded43046e61da3b73fb70ce92202ef2a4963bc27 /features/project | |
parent | 6136dd5a751b22cf88609840a89a40ffbc0b9145 (diff) | |
download | gitlab-ce-eeebf7dae61676f79a482930174d37e3afb79dd6.tar.gz |
Fixing requested changes for 'search issues by description' tests
Diffstat (limited to 'features/project')
-rw-r--r-- | features/project/issues/issues.feature | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/features/project/issues/issues.feature b/features/project/issues/issues.feature index 85c6ab4bc2a..e3001318c23 100644 --- a/features/project/issues/issues.feature +++ b/features/project/issues/issues.feature @@ -64,30 +64,30 @@ Feature: Project Issues And I should not see "Release 0.4" in issues @javascript - Scenario: Test to search project issues when the entered search string exactly matches an existing issue description - Given project "Shop" has issue "Bugfix1" with description: "Description for issue1" - And I fill in issue search with "Description for issue1" - Then I should see "Bugfix1" in issues + Scenario: Search issues when search string exactly matches issue description + Given project 'Shop' has issue 'Bugfix1' with description: 'Description for issue1' + And I fill in issue search with 'Description for issue1' + Then I should see 'Bugfix1' in issues And I should not see "Release 0.4" in issues And I should not see "Release 0.3" in issues And I should not see "Tweet control" in issues @javascript - Scenario: Test to search project issues when the entered search string partially matches an existing issue description - Given project "Shop" has issue "Bugfix1" with description: "Description for issue1" - And project "Shop" has issue "Feature1" with description: "Feature submitted for issue1" - And I fill in issue search with "issue1" - Then I should see "Feature1" in issues - Then I should see "Bugfix1" in issues + Scenario: Search issues when search string partially matches issue description + Given project 'Shop' has issue 'Bugfix1' with description: 'Description for issue1' + And project 'Shop' has issue 'Feature1' with description: 'Feature submitted for issue1' + And I fill in issue search with 'issue1' + Then I should see 'Feature1' in issues + Then I should see 'Bugfix1' in issues And I should not see "Release 0.4" in issues And I should not see "Release 0.3" in issues And I should not see "Tweet control" in issues @javascript - Scenario: Test to search project when the entered search string matches no existing issue description - Given project "Shop" has issue "Bugfix1" with description: "Description for issue1" - And I fill in issue search with "Rock and roll" - Then I should not see "Bugfix1" in issues + Scenario: Search issues when search string matches no issue description + Given project 'Shop' has issue 'Bugfix1' with description: 'Description for issue1' + And I fill in issue search with 'Rock and roll' + Then I should not see 'Bugfix1' in issues And I should not see "Release 0.4" in issues And I should not see "Release 0.3" in issues And I should not see "Tweet control" in issues |