gitlab-org--gitlab-foss/features/steps/dashboard/projects.rb

12 lines
310 B
Ruby
Raw Normal View History

class Spinach::Features::DashboardProjects < Spinach::FeatureSteps
2013-03-12 09:40:54 +00:00
include SharedAuthentication
include SharedPaths
include SharedProject
step 'I should see projects list' do
2013-03-12 09:40:54 +00:00
@user.authorized_projects.all.each do |project|
page.should have_link project.name_with_namespace
end
end
end