2014-05-19 12:24:48 +05:30
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :vposition do
|
|
|
|
|
title 'Example Volunteer Position'
|
|
|
|
|
description 'Lorem Ipsum dolsum'
|
|
|
|
|
conference
|
|
|
|
|
|
|
|
|
|
after(:build) do |vposition|
|
|
|
|
|
vposition.vdays << build(:vday, conference: vposition.conference)
|
|
|
|
|
end
|
|
|
|
|
end
|
2014-05-19 12:49:04 +05:30
|
|
|
|
2014-06-30 17:07:53 +02:00
|
|
|
end
|