gitlabhq/features/steps/dashboard/dashboard_issues.rb

21 lines
565 B
Ruby
Raw Normal View History

class DashboardIssues < Spinach::FeatureSteps
2012-09-10 17:35:03 +02:00
include SharedAuthentication
include SharedPaths
Then 'I should see issues assigned to me' do
issues = @user.issues
issues.each do |issue|
page.should have_content(issue.title[0..10])
page.should have_content(issue.project.name)
page.should have_link(issue.project.name)
end
end
And 'I have assigned issues' do
project = create :project
project.add_access(@user, :read, :write)
2.times { create :issue, author: @user, assignee: @user, project: project }
end
end