Tests improved

5-0-stable
Andrew8xx8 2013-03-12 13:40:54 +04:00
parent 23f8f13ea4
commit 804ae05c58
2 changed files with 27 additions and 1 deletions

View File

@ -4,5 +4,11 @@ Feature: Dashboard
And I own project "Shop"
And I visit dashboard projects page
Scenario: I should see issues list
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

View File

@ -0,0 +1,20 @@
class Dashboard < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject
Then 'I should see projects list' do
@user.authorized_projects.all.each do |project|
page.should have_link project.name_with_namespace
end
end
Given 'I search for "Sho"' do
fill_in "dashboard_projects_search", with: "Sho"
click_button "Search"
end
Then 'I should see "Shop" project link' do
page.should have_link "Shop"
end
end