2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2012-03-29 21:34:22 +01:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :issue do
|
|
|
|
title { FactoryGirl.generate(:string) }
|
|
|
|
body { FactoryGirl.generate(:string) }
|
|
|
|
association :project, :factory => :project
|
|
|
|
association :user, :factory => :user
|
2012-04-13 20:44:04 +01:00
|
|
|
association :assignee, :factory => :user
|
2012-03-29 21:34:22 +01:00
|
|
|
status "open"
|
|
|
|
end
|
2011-12-23 10:56:46 +00:00
|
|
|
end
|