2012-04-18 18:08:53 +01:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :pull_request 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-04-18 18:08:53 +01:00
|
|
|
end
|
|
|
|
end
|