debian-mirror-gitlab/features/steps/dashboard/projects.rb
2014-09-02 14:37:02 +02:00

11 lines
291 B
Ruby

class DashboardProjects < 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
end