mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-11 17:24:50 -04:00
Use factory bot to make a harvest.plant_part
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
FactoryBot.define do
|
||||
factory :harvest do
|
||||
crop { planting.present? ? planting.crop : FactoryBot.create(:crop) }
|
||||
plant_part { create :plant_part, name: Faker::Book.unique.title }
|
||||
plant_part { FactoryBot.create :plant_part }
|
||||
planting nil
|
||||
owner { planting.present? ? planting.owner : FactoryBot.create(:member) }
|
||||
harvested_at { Time.zone.local(2015, 9, 17) }
|
||||
|
||||
Reference in New Issue
Block a user