Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Baryshev <baryshev@gmail.com>2012-10-16 23:05:11 +0400
committerIlya Baryshev <baryshev@gmail.com>2012-10-16 23:05:11 +0400
commite6524a919ee4c92d82518c2520d5c0cabc32eb47 (patch)
tree483060d8211e80e73ac19ccab3ef86deb8f71fe9 /features/dashboard
parentdb3d90cbcb41c5b9a62998b185c90c10f9d03968 (diff)
Wiki search
Very basic, using LIKE, and no search snippets.
Diffstat (limited to 'features/dashboard')
-rw-r--r--features/dashboard/search.feature5
1 files changed, 5 insertions, 0 deletions
diff --git a/features/dashboard/search.feature b/features/dashboard/search.feature
index 91d870f46f3..9813d9d1e7c 100644
--- a/features/dashboard/search.feature
+++ b/features/dashboard/search.feature
@@ -2,8 +2,13 @@ Feature: Dashboard Search
Background:
Given I sign in as a user
And I own project "Shop"
+ And Project "Shop" has wiki page "Contibuting guide"
And I visit dashboard search page
Scenario: I should see project I am looking for
Given I search for "Sho"
Then I should see "Shop" project link
+
+ Scenario: I should see wiki page I am looking for
+ Given I search for "Contibuting"
+ Then I should see "Contibuting guide" wiki link \ No newline at end of file