Sha256: 0f3a1f0ad4c7eea24bceb369c866c3fbcb8446dfa96017c79e6a7a64bd4f2aa7
Contents?: true
Size: 340 Bytes
Versions: 10
Compression:
Stored size: 340 Bytes
Contents
FactoryGirl.define do factory :reserve do |f| before(:create) do |reserve| profile = FactoryGirl.create(:profile) user = FactoryGirl.create(:admin) user.profile = profile reserve.user = user end f.manifestation_id{FactoryGirl.create(:manifestation).id} # f.user{FactoryGirl.create(:user)} end end
Version data entries
10 entries across 9 versions & 2 rubygems