Sha256: b914cda540f4610af9712cc18012a9b28b6b85b4cd100271a381376596de06c3
Contents?: true
Size: 308 Bytes
Versions: 13
Compression:
Stored size: 308 Bytes
Contents
FactoryBot.define do factory :reserve do before(:create) do |reserve| profile = FactoryBot.create(:profile) user = User.new(FactoryBot.attributes_for(:user)) user.profile = profile reserve.user = user end manifestation_id{FactoryBot.create(:manifestation).id} end end
Version data entries
13 entries across 13 versions & 1 rubygems