debian-mirror-gitlab/features/steps/dashboard/projects.rb

12 lines
291 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
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