Files
gitlabhq/features/steps/dashboard/projects.rb
T
2014-09-22 20:56:12 +03:00

12 lines
310 B
Ruby

class Spinach::Features::DashboardProjects < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject
step 'I should see projects list' do
@user.authorized_projects.all.each do |project|
page.should have_link project.name_with_namespace
end
end
end