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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-19 20:50:28 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-19 20:50:28 +0400
commit4a53e0285c9f823cde7cf8dec9d065952b707864 (patch)
tree0c614a65d932b1918d301f724e81aacc0c975541 /features
parentc9370b753a55d946523da65b6a0c4bed061d68c8 (diff)
parenta3b42b6fa13991440aeb75264f865329cff719a3 (diff)
Merge branch 'improve/dash_projects_page' of /home/git/repositories/gitlab/gitlabhq into 6-0-dev
Diffstat (limited to 'features')
-rw-r--r--features/dashboard/projects.feature4
-rw-r--r--features/steps/dashboard/dashboard_projects.rb12
2 files changed, 0 insertions, 16 deletions
diff --git a/features/dashboard/projects.feature b/features/dashboard/projects.feature
index 7e617bd1bfc..7d8c129face 100644
--- a/features/dashboard/projects.feature
+++ b/features/dashboard/projects.feature
@@ -6,7 +6,3 @@ Feature: Dashboard projects
Scenario: I should see projects list
Then I should see projects list
-
- Scenario: I should see project I am looking for
- Given I search for "Sho"
- Then I should see "Shop" project link
diff --git a/features/steps/dashboard/dashboard_projects.rb b/features/steps/dashboard/dashboard_projects.rb
index 670e25a97a4..85251565446 100644
--- a/features/steps/dashboard/dashboard_projects.rb
+++ b/features/steps/dashboard/dashboard_projects.rb
@@ -8,16 +8,4 @@ class DashboardProjects < Spinach::FeatureSteps
page.should have_link project.name_with_namespace
end
end
-
- Given 'I search for "Sho"' do
- fill_in "dashboard_projects_search", with: "Sho"
-
- within ".dashboard-search-filter" do
- find('button').click
- end
- end
-
- Then 'I should see "Shop" project link' do
- page.should have_link "Shop"
- end
end