Commit a3b42b6fa13991440aeb75264f865329cff719a3

Authored by Dmitriy Zaporozhets
1 parent 63a67bb4

Remove dash projects search test

features/dashboard/projects.feature
... ... @@ -6,7 +6,3 @@ Feature: Dashboard projects
6 6  
7 7 Scenario: I should see projects list
8 8 Then I should see projects list
9   -
10   - Scenario: I should see project I am looking for
11   - Given I search for "Sho"
12   - Then I should see "Shop" project link
... ...
features/steps/dashboard/dashboard_projects.rb
... ... @@ -8,16 +8,4 @@ class DashboardProjects < Spinach::FeatureSteps
8 8 page.should have_link project.name_with_namespace
9 9 end
10 10 end
11   -
12   - Given 'I search for "Sho"' do
13   - fill_in "dashboard_projects_search", with: "Sho"
14   -
15   - within ".dashboard-search-filter" do
16   - find('button').click
17   - end
18   - end
19   -
20   - Then 'I should see "Shop" project link' do
21   - page.should have_link "Shop"
22   - end
23 11 end
... ...