osem-fcy/spec/factories/targets.rb

13 lines
266 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-09-03 20:48:28 +02:00
# Read about factories at https://github.com/thoughtbot/factory_bot
FactoryBot.define do
factory :target do
due_date { 14.days.from_now }
target_count { 100 }
unit { Target.units[:submissions] }
conference
end
end