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
|