blob: 8525156544653c8a3bba13bc243fe74072d9bd5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
|