OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/factories/issue_factory.rb

15 lines
460 B

FactoryGirl.define do
factory :issue do
priority
project :factory => :project_with_trackers
status :factory => :issue_status
sequence(:subject) { |n| "Issue No. #{n}" }
description { |i| "Description for '#{i.subject}'" }
author :factory => :user
after :build do |issue|
# a valid issue needs a tracker which is known to its project
issue.tracker = issue.project.trackers.first unless issue.tracker
end
end
end