mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
12 lines
291 B
Ruby
12 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
|