osem-fcy/spec/factories/vpositions.rb

26 lines
559 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2021-02-20 09:57:27 -08:00
# == Schema Information
#
# Table name: vpositions
#
# id :bigint not null, primary key
# description :text
# title :string not null
# created_at :datetime
# updated_at :datetime
# conference_id :integer
#
FactoryBot.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