2012-03-29 21:34:22 +01:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :issue do
|
|
|
|
title { FactoryGirl.generate(:string) }
|
|
|
|
body { FactoryGirl.generate(:string) }
|
2014-01-21 04:51:49 +00:00
|
|
|
association :project, factory: :project
|
|
|
|
association :user, factory: :user
|
|
|
|
association :assignee, factory: :user
|
2012-03-29 21:34:22 +01:00
|
|
|
status "open"
|
|
|
|
end
|
2011-12-23 10:56:46 +00:00
|
|
|
end
|