Sha256: db851239cef3bf969c690bf9994c38aff8cee70d43486446c3e74e0fea852ffc
Contents?: true
Size: 335 Bytes
Versions: 29
Compression:
Stored size: 335 Bytes
Contents
FactoryBot.define do factory :reserve do |f| before(:create) do |reserve| profile = FactoryBot.create(:profile) user = FactoryBot.create(:admin) user.profile = profile reserve.user = user end f.manifestation_id{FactoryBot.create(:manifestation).id} # f.user{FactoryBot.create(:user)} end end
Version data entries
29 entries across 29 versions & 1 rubygems