summaryrefslogtreecommitdiff
path: root/features/search.feature
diff options
context:
space:
mode:
Diffstat (limited to 'features/search.feature')
-rw-r--r--features/search.feature21
1 files changed, 19 insertions, 2 deletions
diff --git a/features/search.feature b/features/search.feature
index b174d973122..54708c17575 100644
--- a/features/search.feature
+++ b/features/search.feature
@@ -24,6 +24,23 @@ Feature: Search
And I should not see "Bar" link
Scenario: I should see project code I am looking for
- When I search for "rspec"
- And I click project "Shop" link
+ When I click project "Shop" link
+ And I search for "rspec"
Then I should see code results for project "Shop"
+
+ Scenario: I should see project issues
+ And project has issues
+ When I click project "Shop" link
+ And I search for "Foo"
+ And I click "Issues" link
+ Then I should see "Foo" link
+ And I should not see "Bar" link
+
+ Scenario: I should see project merge requests
+ And project has merge requests
+ When I click project "Shop" link
+ And I search for "Foo"
+ And I click "Merge requests" link
+ Then I should see "Foo" link
+ And I should not see "Bar" link
+