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