rosa-build/spec/factories/pull_request.rb

10 lines
270 B
Ruby
Raw Normal View History

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