2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-09-03 20:48:28 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
2014-06-26 09:08:26 +02:00
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2014-06-26 09:08:26 +02:00
|
|
|
factory :target do
|
2014-07-23 09:08:50 +02:00
|
|
|
due_date { 14.days.from_now }
|
2018-09-08 03:58:50 +02:00
|
|
|
target_count { 100 }
|
|
|
|
|
unit { Target.units[:submissions] }
|
2015-04-14 17:33:59 +02:00
|
|
|
conference
|
2014-06-26 09:08:26 +02:00
|
|
|
end
|
|
|
|
|
end
|