refactor feature steps

This commit is contained in:
Nihad Abbasov 2012-09-10 08:35:03 -07:00
parent ef4e9c24d3
commit 79eb5ab396
34 changed files with 270 additions and 376 deletions

View file

@ -0,0 +1,19 @@
class DashboardIssues < Spinach::FeatureSteps
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)
end
end
And 'I have assigned issues' do
project = Factory :project
project.add_access(@user, :read, :write)
2.times { Factory :issue, :author => @user, :assignee => @user, :project => project }
end
end