2013-03-12 08:10:20 -04:00
|
|
|
class DashboardProjects < Spinach::FeatureSteps
|
2013-03-12 05:40:54 -04:00
|
|
|
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
|
|
|
|
end
|