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