summaryrefslogtreecommitdiff
path: root/features/steps/dashboard/projects.rb
blob: 40526660bebc92f43237047442904c12d4f2a515 (plain)
1
2
3
4
5
6
7
8
9
10
11
class Spinach::Features::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